You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 828B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Playback</title>
  7. <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10. <div id="group-info">
  11. <div id="is-playing">Not Playing</div>
  12. <div id="progress-text"></div>
  13. </div>
  14. <div id="group-bar">
  15. <progress id="progress"></progress>
  16. </div>
  17. <div id="group-buttons">
  18. <button id="mute">Mute</button>
  19. <button id="skip-back">&lt;</button>
  20. <button id="pause">||</button>
  21. <button id="skip-forward">&gt;</button>
  22. <button id="exit">Exit</button>
  23. </div>
  24. <div id="group-volume">
  25. Volume <span id="volume-text"></span><br>
  26. <input id="volume" type="range">
  27. </div>
  28. <script src="/webstuff.js"></script>
  29. <script src="script.js"></script>
  30. </body>
  31. </html>