Progress
A progress bar shows how far a task has got. It is the native <progress> element, themed to the site.
<progress value="70" max="100">70%</progress>
A bar
Give value and max; the bar fills to that fraction. The text inside is the fallback.
<progress value="70" max="100">70%</progress>
Indeterminate
Leave off value and the bar animates on its own, for a wait you cannot measure.
<progress></progress>