123456789101112131415161718192021222324252627282930313233343536 |
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width" />
- <title>Tuner</title>
- <style>
- #container1 {
- padding: 40px;
- }
- img{
- width: 100px;
- height: 100px;
- margin: 15px;
- }
- #colorBox {
- width: 500px;
- height: 100px;
- border: 1px solid black;
- }
- </style>
- </head>
- <body>
- <div id='container2'></div>
- <div id="colorBox"></div>
- <div class="audioBox">
- <div id='container1'></div>
- <p>bbno$ ft Diamond Pistols - Help Yourself</p>
- <audio class="mySong" autoplay controls>
- <source src="bbno$%20x%20diamond%20pistols%20%20help%20herself.mp3" type="audio/mp3">
- Your browser does not support the audio element.
- </audio>
- </div>
- <script src='index.js'></script>
- </body>
- </html>
|