I am looking to add thick dots at specific locations along the vertical line between [div class="col-md-4"] and [div class="col-md-8"].
Here is what I have attempted:
<div class="col-md-4" style="border-right:1px solid #333;">
<h1>1987</h1><p>lorem ipsom .........</p>
<h1>1990</h1><p>lorem ipsom .........</p>
<h1>1998</h1><p>lorem ipsom .........</p>
</div>
<div class="col-md-8">
description
</div>
The code successfully created a vertical line between classes 4 and 8, but now I also want to display thick dots above this vertical line for each year. How can I achieve this?