tag < progress > :
Definition and Usage
The <progress> tag represents the progress of a task.
| Attribute | Value | Description |
|---|---|---|
| max | number | Specifies how much work the task requires in total |
| value | number | Specifies how much of the task has been completed |
| example | <progress value="30" max="100" > </progress> |
| output |