12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Volume and color adjastment</title>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <div class="container">
- <div id="volume">
- <audio controls>
- <source src="./Nightingale.mp3" type="audio/mpeg">
- </audio>
-
- </div>
- <div class="div"></div>
- <h3>Rotate to change background color</h3>
- <div id="root">
- </div>
- </div>
- <script src="script.js"></script>
- </body>
- </html>
|