References

Collection of references for web development.

HTML progress tag

Description

The HTML <progress> element represents the progress of a task, commonly displayed as a progress bar.

Attributes

Attribute Value Description
max number Specifies the maximum value for this element.
value value Specifies the value of the element.

Example

<progress value="37" max="100"></progress>