EN
HTML - number input
0
points
In this article, we would like to show you how to create and use number input element in HTML.
Quick solution:
// ONLINE-RUNNER:browser;
<label>
<span>Select the number:</span>
<input type="number" name="input-name" />
</label>
Practical example
In this example, we create a simple number input using the input element's type="number"
attribute.
Additionally, we specify the following input attributes:
min
- minimum value,max
- maximum value,step
- interval between legal numbers.
Runnable example:
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<body>
<form>
<label>
<span>Select the number:</span>
<input type="number" name="my-number" min="10" max="50" step="2" />
</label>
</form>
</body>
</html>