How to use min and max attributes with input type number to inpute a rang of numbers in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>
 
<form action="">
<input type="number" name="fromto" min="3" max="7"><br /><br />
<input type="submit">
</form>
 
</body>
</html>

 



answered Jan 6, 2019 by avibootz
...