+ 1
How much input type in HTML?
iIn which input type define man&max value?
3 Answers
+ 10
Here you go.
https://code.sololearn.com/WNbXpdyADgvP/?ref=app
+ 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.
+ 1
If I do not input what do I do