After finding an image online displaying a timeline with text above and below each bullet point, I decided to create my own version. You can view the result in this demo
Here is the HTML code:
<ul class="timeline" id="timeline">
<li class="li complete">
<div class="timestamp">
<span>Expire:</span>
<span>Hours: </span>
</div>
<div class="bullet">
<h5>Awarded Time</h5>
</div>
</li>
<li class="li complete">
<div class="timestamp">
<span>Expire:</span>
<span>Hours: </span>
</div>
<div class="bullet">
<h5>Advance Time</h5>
</div>
</li>
<li class="li complete">
<div class="timestamp">
<span>Available Time: </span>
<span> </span>
</div>
<div class="bullet">
<h5>Total</h5>
</div>
</li>
</ul>
Inspired by a specific image featuring an additional bullet within each bullet point, I would like to achieve a similar effect. Here's an example of what I'm aiming for:
https://i.sstatic.net/CipJs.png
What steps should I take to implement this nested bullet structure?