HTML5 Range Input Type - HTML CSS HTML

HTML CSS examples for HTML:Form Input

Description

HTML5 Range Input Type

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>HTML5 Range Input Type</title> 
 </head> <!--from   w w w . j av  a  2  s .c om-->
 <body> 
  <form> 
   <label> Select Number: <input type="range" value="1" min="1" max="10" step="0.5" name="mynumber"> </label> 
  </form>   
 </body>
</html>

Related Tutorials