index.html 660 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Audio Streamer</title>
  5. <script src="https://cdn.socket.io/4.0.0/socket.io.min.js"></script>
  6. <style>
  7. body {
  8. background-color: black;
  9. color: white;
  10. font-family: Arial, sans-serif;
  11. }
  12. .text-display {
  13. white-space: pre-wrap; /* Preserves spaces and line breaks */
  14. font-size: 16px;
  15. }
  16. .yellow {
  17. color: yellow;
  18. }
  19. .cyan {
  20. color: cyan;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="textDisplay" class="text-display"></div>
  26. <script src="client.js"></script>
  27. </body>
  28. </html>