Advertisement
jpss

Barra

Feb 18th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <style>
  4. #myProgress {
  5.   width: 100%;
  6.   background-color: #ddd;
  7. }
  8.  
  9. #myBar {
  10.   width: 80%;
  11.   height: 30px;
  12.   background-color: #4CAF50;
  13. }
  14.  
  15. #label {
  16.   text-align: center;
  17.   line-height: 30px;
  18.   color: white;
  19. }
  20. </style>
  21. <body>
  22.  
  23. <h1>JavaScript Progress Bar</h1>
  24.  
  25. <div id="myProgress">
  26.   <div id="myBar">
  27.     <div id="label">80%</div>
  28.   </div>
  29. </div>
  30.  
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement