<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 4 Custom Range Input with Min, Max and Step Attributes</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
$(document).ready(function(){
$("#result b").html($("#customRange").val());
$("#customRange").change(function(){
$("#result b").html($(this).val());
<p class="mt-4"><strong>Note:</strong> Drag the blue circle to see how it works.</p>
<label for="customRange">Custom range</label>
<input type="range" class="custom-range" min="0" max="10" step="0.5" id="customRange">
<div id="result">Current Value: <b></b></div>