HTML < progress > Tag - Learn About Website | DaddyFile

0

HTML <progress> Tag

Example

Downloading in progress:

<progress value="22" max="100"></progress>


Definition and Usage

The <progress> tag represents the progress of a task.

Differences Between HTML 4.01 and HTML5

The <progress> tag is new in HTML5.

Tips and Notes

Tip: Use the <progress> tag in conjunction with JavaScript to display the progress of a task.
Note: The <progress> tag is not suitable for representing a gauge (e.g. disk space usage or relevance of a query result). To represent a gauge, use the <meter> tag instead.

Post a Comment

 
Top