HTML CSS examples for HTML Tag:input number
Strict number input field with pattern
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!-- w ww . ja va 2 s . c om--> <body> <form> <input required type="text" pattern="0|[1-9]\d*"> <input type="submit"> </form> </body> </html>