Edit This Code:
See Result »
<!Doctype html> <html> <style> #myProgress { position: relative; width: 100%; height: 30px; background-color: #ddd; } #myBar { position: absolute; width: 1%; height: 100%; background-color: #4CAF50; } </style> <body> <h1>My First JavaScript Progress Bar</h1> <div id="myProgress"> <div id="myBar"></div> </div> </body> <!-- Mirrored from www.w3schools.com/howto/tryit.asp?filename=tryhow_js_progressbar_2 by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 13 Mar 2016 11:03:55 GMT --> </html>
Result: