HTML CSS examples for HTML Tag:input text
Create HTML text input which allows only numeric input
<html> <head></head> <body> <form action=""> Quantity (between 1 and 5): <!-- w ww. j a v a 2 s . c om--> <input type="number" name="quantity" min="1" max="5"> <input type="submit"> </form> </body> </html>