<progress>: The HTML Progress Element
1 Description
The HTML <progress>
element is used to create a progress bar.
2 Examples
<!DOCTYPE html>
<html>
<head>
<title>Progress Bar Example Page</title>
</head>
<body>
<main>
<h1>Progress Bar</h1>
<label for="file_download_progress">File Download Progress:</label>
<progress id="file_download_progress" max="100" value="37">37%</progress>
</main>
</body>
</html>
This document was last updated: