HTML: progress Tag

By Xah Lee. Date: . Last updated: .

The progress tag is used for a progress bar. For example, download completion, etc.

Attributes

value="number"
Required.
max="number"
Optional. Indicates the max value, if known.

Example 1

<progress value="0.3"></progress>

Example 2

<progress value="4" max="10"></progress>

Browser Support

Back to HTML Tags Complete List .