I'm making sliders bar. I want to put a memory like 0 1 2 3 4 under the slider like in the picture Same as bar length.
Mine
How can I make it look like the ideal?
My code is like this now.
<input className="col-8" type="range" name="speed" min="0" max="100"
value={brightness_value} onChange={handleSliderChange}></input><br></br>
<br></br>
<p>0 1 2 3 4</p>

