HTML <progress> tag
You are Here:
HTML <progress> tag
The <progress>
tag is used to display an indicator showing the completion progress of a task.
Tips: The <progress>
tag is used in conjunction with JavaScript to display the progress of a task.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
Uploading Progress:
<progress value="70" max="100">
</progress>
</body>
</html>
Attributes
The following are the attributes of <progress> tag. Also try Global attributes.
Attribute | Value | Explanation |
---|---|---|
max | number | Specifies the total amount of work to be done. |
value | number | Specifies how much of the work that has been completed. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.