I am looking to create a horizontal bar with multiple intervals. Here is what I have tried so far:
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div>
The current result looks like this:
https://i.sstatic.net/dRPsA.jpg
My goal is to represent a day with multiple intervals, each displaying the hours. Each interval should have a label inside, as shown in this image for reference:
https://i.sstatic.net/FIGYg.jpg
Any suggestions on how I can achieve this? Your help is appreciated.