Respuesta :

Answer:

In HTML 5

<form>

 <label>Days (1 - 3):</label>

 <input type="number" id="days" name="days" min="1" max="3">

</form>

Explanation:

This creates a form

<form>

This creates a label with the caption Days (1 - 3)

 <label>Days (1 - 3):</label>

This creates a number field where the minimum and maximum that could be entered are 1 and 3 respectively

 <input type="number" id="days" name="days" min="1" max="3">

The form ends here

</form>

The minimum and maximum are specified using the following attributes and value

min = "1" --- For minimum

max = "3" --- For maximum