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