I have a simple HTML Range Slider. Min value is 0 Max is 30. I want to put labels under the slider but only every 5.
Code is shown below and demo page is here - https://premiecheck-omzetgarant.nl/CalcTool/test.html
<div class="slidecontainer">
<input type="range" min="0" max="30" value="0" class="slider" id="myRange">
<p>Value: <span id="demo"></span></p>
</div>