0
how to set a range for the rating label in my html form?
I want to restrict user to enter only numbers between (1-10) and not more than that
1 Respuesta
+ 3
<input type="number" value="1" min="1" max="10">
I want to restrict user to enter only numbers between (1-10) and not more than that