For browsers that do not support the progress element, you can use this as a workaround.
<progress max="100" value="20">
<div class="progress-bar">
<span style="width: 20%;">Progress: 20%</span>
</div>
</pr...