HTML <progress> value Attribute
Example
<label for="loading">Loading progress:</label>
<progress id="loading" value="55" max="100"> 55% </progress>
Meaning
The value attribute is the amount of task complete.
This may be a percentage, but there is no requirement that it be such a measurement.
Standard Syntax
<progress value="number" max="number"> number </progress>
Advertisement