index.html 802 B

1234567891011121314151617181920212223242526272829303132333435
  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$xdiamondPistols-help%20herself.mp3" type="audio/mp3">
  30. </audio>
  31. </div>
  32. <script src='index.js'></script>
  33. </body>
  34. </html>