Progress bars are essential for tracking certain metrics. Take a look at the progress bars below:
<div id="lifeBar-holder">
<div id="lifeBar"></div>
</div>
<div id="discretionBar-holder">
<div id="discretionBar"></div>
</div>
If you examine the CSS, you'll see the styling for these progress bars:
#lifeBar-holder{width:200px;height:15px;background:grey; position:absolute; top:20px; left:30px;}
#lifeBar{width:0;height:100%;background:green;}
#discretionBar-holder{width:200px;height:15px;background:grey; position:absolute; top:40px; left:30px;}
#discretionBar{width:0;height:100%;background:blue;}
For a live demonstration of these progress bars in action, click here.
To enhance these progress bars, I am looking for a way to add text and labels to each one. Any suggestions would be greatly appreciated!
As I am not very proficient with HTML and CSS, any help is welcome. Thank you! :)