Can someone help me to create html for below? I am creating a simple html progress tracker, which looks similar to stacked bar chart. I would like to display title labels pointing to each stack in the graph. How can I do that? It should work on IE8.
Here's a fiddle I have created so far jsfiddle link , but unable to create title labels which you see around the graph
<div class="colWrapper">
<div class="bar" style="background-color:#4cff00;width:40%">
<div align="center" class="barLabel"><span>Done</span></div>
</div>
<div class="bar" style="background-color:#ff0000;width:5%">
<div align="center" class="barLabel"></div>
</div>
<div class="bar" style="background-color:#00ffff;width:50%">
<div align="center" class="barLabel"><span>Pending</span></div>
</div>
<div class="bar" style="background-color:#0094ff;width:5%">
<div align="center" class="barLabel"><span></span></div>
</div>
</div>
Below is the prototype I am trying to create,
