Progress
Use the progress class to create a progress bar container. The progress-bar class is used to style the progress bar and is placed inside the progress container. The style attribute is used to set the width of the progress bar. Percentages are supported, but you can also use pixels or other CSS length units.
For accessibility, the role attribute is used to set the progress bar role and the aria-valuenow, aria-valuemin, and aria-valuemax attributes are used to set the progress bar value. Any overflow is clipped.
<div class="progress" role="progressbar" aria-valuenow={70} aria-valuemin={0} aria-valuemax={100}>
<div class="progress-bar" style="width: 70%;"></div>
</div>