Languages
[Edit]
EN

HTML - number input

0 points
Created by:
Inayah-Alexander
767

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>

References

Alternative titles

  1. HTML - input type number
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

HTML - input element types

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join