Html 5 Progress Tag

The <progress> tag was introduced in HTML 5. The <progress> tag indicate a part of download document. The <progress> tag did not exist in older version of HTML.which is used to display the time in progress of a download.

Syntax:

<progress> .... </progress>

Example Code

<!DOCTYPE HTML>
Download :
<progress>
    <span id="objprogress">99</span>%
</progress>

Out Put :



Download : 99%

In the above example progress tag is used to download files and it indicate to download file in 99%.





Content