Code and Output for progress:

Code:

    <!DOCTYPE html>
    <html>
    <head>
      <title>HTML Example</title>
    </head>
    <body>
      <h1>The progress element</h1>
      <label for="file">Downloading progress:</label>
      <progress id="file" value="32"  max="100"> 32% </progress>
      
    </body>
    </html>
  

Output:

The progress element

32%