index.html 873 B

123456789101112131415161718192021222324252627282930313233343536
  1. <html>
  2. <head>
  3. <meta charset="utf-8" />
  4. <meta name="viewport" content="width=device-width" />
  5. <title>Tuner</title>
  6. <style>
  7. #container1 {
  8. padding: 40px;
  9. }
  10. img{
  11. width: 100px;
  12. height: 100px;
  13. margin: 15px;
  14. }
  15. #colorBox {
  16. width: 500px;
  17. height: 100px;
  18. border: 1px solid black;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div id='container2'></div>
  24. <div id="colorBox"></div>
  25. <div class="audioBox">
  26. <div id='container1'></div>
  27. <p>bbno$ ft Diamond Pistols - Help Yourself</p>
  28. <audio class="mySong" autoplay controls>
  29. <source src="bbno$%20x%20diamond%20pistols%20%20help%20herself.mp3" type="audio/mp3">
  30. Your browser does not support the audio element.
  31. </audio>
  32. </div>
  33. <script src='index.js'></script>
  34. </body>
  35. </html>