Number
The input type number used for numeric input field.
Here is the example of the input type numbert used in our applications form,
Here is the html code for number used in our application,
<form>
<label for="example">Example (between 1 and 5):</label>
<input type="number" name="example" min="1" max="5">
</form>
Here is the css code for number used in our application,
input[type=number]
{
color: #7a8f99 !important;
margin-top: 3.5%;
border: none;
background-color:#ccc;
border: none;
margin-left: 1%;
padding: 1%;
}