Last Updated on April 26, 2023 by Roshan Parihar
HTML progress tag is used to display the completion progress of the task.
The progress bar can be used with javascript to display process as it is underway. This is very useful when someone wants to develop software and wants to see its progress
Syntax
1 |
<progress value="enter a valid value" max="enter max value"></progress> |
1 |
<progress value="22" max="100"></progress> |
Output
List of HTML progress tag attributes
Sr. No. | Attribute options | Description |
---|---|---|
1 | max | Specify the maximum number of tasks requires in total. The value for this is a numeric value. |
2 | value | Specify the number of tasks completed in total. The value for this is a numeric value. |