index.html 694 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Volume and color adjastment</title>
  8. <link rel="stylesheet" href="style.css">
  9. </head>
  10. <body>
  11. <div class="container">
  12. <div id="volume">
  13. <audio controls>
  14. <source src="./Nightingale.mp3" type="audio/mpeg">
  15. </audio>
  16. </div>
  17. <div class="div"></div>
  18. <h3>Rotate to change background color</h3>
  19. <div id="root">
  20. </div>
  21. </div>
  22. <script src="script.js"></script>
  23. </body>
  24. </html>