Bootstrap 5 Range Slider HTML Example

Bootstrap 5 range slider examples with various variants input range slider HTML like default HTML5 range slider and Bootstrap range slider with & without step.

HTML

<!--Default Range Slider-->
<!--Add a form-range class in the input tag to make a stylish input range slider-->
<input type="range" class="form-range" min="0" max="100" value="50">
    
    
<!--Range Slider With Step-->
<!--Add step=” “ in the input tag to make it a step range slider.-->
<input type="range" class="form-range" min="0" max="100" value="80" step="10">
    

<!--HTML5 Range Slider-->
<!--This is made without Bootstrap or any CSS-->
<input type="range" min="0" max="100" value="20">