The HTML progress tag is used to display a progress bar that shows the progress of a task. This tag was introduced in HTML 5.
Attributes
Attribute | Description |
value | This attribute is used to specify how much of the task that has been completed. It must be a floating point number. It's value must be between the minimum value (0) and maximum value. If the value attribute is not specified, the progress bar is indeterminate. |
max | Specifies the maximum value. It must be a floating point number above zero. The default value is 1. |
Example
<span>Task completed: </span>
<progress max="100" value="30">30%</progress>
<br>
<span>Please wait: </span>
<progress></progress>
Output
Task completed:Please wait:
Related tags:
HTML <meter> tag.
Subscribe
Join the newsletter to get the latest updates.