The <progress> Element is use to show the completeness of the task. We can use script to manipulate the value of progress bar.
This tag is new in HTML5 and progress element have start tag (<progress>) and end tag (</progress>).
Progress element have some following attributes -
Max -
Max attribute describes how much work the task indicated by the progress element requires.
Indicates how much task needs to be done before it can be considered as complete. the default value is 1.0
value-
Value attribute use for how much of the task that has been done. It must be a valid floating point number between 0 and max, or between 0 and 1.
Example -
<progress value="1" max=".6">60 %</progress>
0 Comment(s)