How much input type in HTML? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How much input type in HTML?

iIn which input type define man&max value?

6th Nov 2017, 6:14 AM
Shahid ali
Shahid ali - avatar
3 Answers
6th Nov 2017, 10:40 AM
Ranjan Bagri
Ranjan Bagri - avatar
+ 4
In HTML the most used input types are: 1. text : <input type="text"> 2. password : <input type="password"> 3. submit : <input type="submit"> 4. reset : <input type="reset"> 5. radio : <input type="radio"> 6. checkbox : <input type="checkbox"> 7. button : <input type="button"> But when it comes to HTML5 there are more input types you can use like color, date, url and others.However, these types are not supported in older browsers and if you add them, they will behave like "text" only. ******* As for your min & max value, you can directly use the syntax like : Number : <input type="number" min="1" max="5"> {Number will be between 1 to 5} However, The max and min attributes of the input tag are not supported in Internet Explorer 9 and earlier versions.
6th Nov 2017, 6:41 AM
Nikhil Sharma
Nikhil Sharma - avatar
+ 1
If I do not input what do I do
9th Nov 2017, 8:17 PM
Arun