Which new form input type of html 5 can be used to receive only a number as the value with the range of minimum 0 and maximum 200 and only in multiples of 10?3
Answers
Answered by
0
Answer:
input elements of type number are used to let the user ... The maximum value to accept for this input. ... Only values which are equal to the basis for stepping (
Answered by
5
The HTML <input> tag is used to get user input in HTML. To give a limit to the input field, use the min and max attributes, which is to specify a maximum and minimum value for an input field respectively. To limit the number of characters, use the maxlength attribute.
Similar questions