Html5 range Tag

Html5 input range is a range field type attribute. which can use for a range format to user input.The range type text box does support range format only.

Example Code



<!DOCTYPE HTML>
<input type="range" name="range_box" min="0" max="10" step="1" value="2">

Out Put :

In the above example code min is a minimum range for text box field and max is a maximum for a range field and value is a range format values.

Screen Shot :





Content