<input type="number"> with step setting - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input number

Description

<input type="number"> with step setting

Demo Code

ResultView the demo in separate window

<html lang="en">
 <head> 
  <title>  Nanda Kishore Kalidindi</title> 
 </head> <!--  ww  w  . j a  v a  2s .  c o m-->
 <body translate="no"> 
  <input type="number" min="0" max="99999" step="1">  
 </body>
</html>

Related Tutorials