Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <style> #myProgress { width: 100%; background-color: #ddd; } #myBar { width: 10%; height: 30px; background-color: #04AA6D; text-align: center; line-height: 30px; color: white; } </style> <body> <h1>JavaScript Progress Bar</h1> <div id="myProgress"> <div id="myBar">10%</div> </div> </body> </html>