<progress>: The HTML progress element

I. Description

The HTML <progress> element is used to create a progress bar.

II. 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: