back

Progress

Tag: <progress>

The progress tag is used to add a progress bar into a webpage, for example to show how much of a task is completed.
Inside the opening tag are two attributes, the first is max, this shows how much needs to be completed in total.
The second is value, this shows how much of the tasks total has been completed.

It is closed with the closing tag </progress>

This tag is new in HTML5

Example