progress
Definition and Usage
The <progress> tag represents the progress of a task. The HTML <progress> tag specifies a completion progress of a task. It is displayed as a progress bar.The value of progress bar can be manipulated by JavaScript. A progress element must both a start tag (i.e.<progress>
) and an end tag (i.e. </progress>
), even though it looks like a replaced element (like an input).
Syntax
<progress></progress>