//the following example displays a numeric input field,
//where you can enter a value from 1 to 5
<form>
Quantity (between 1 and 5):
<input type="number" name="quantity" min="1" max="5">
</form>
Defines a numeric input field.
You can also set restrictions on what numbers are accepted.