progress tag in HTML5

progress tag in HTML5 

 
Progress tag in HTML5 is used to show the Downloading in Progress. This element is supported by Google Chrome, Opera, and Firefox.
 
Ex:
  1. <html>  
  2.     <body>  
  3. Downloading progress In Html5:  
  4.         <progress value="50" max="100"></progress>  
  5.     </body>  
  6. </html>  
Here value is used to represent the downloading value in the progress bar or it represents how much work has been completed and max value represents the total downloading value
 
Output:
 
3.png