index.html 909 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Audio Streamer</title>
  5. <meta charset="UTF-8">
  6. <script src="https://cdn.socket.io/4.0.0/socket.io.min.js"></script>
  7. <style>
  8. html, body {
  9. height: 100%;
  10. margin: 0;
  11. }
  12. body {
  13. background-color: black;
  14. color: white;
  15. font-family: Arial, sans-serif;
  16. display: flex;
  17. justify-content: center;
  18. align-items: center;
  19. text-align: center;
  20. }
  21. .text-display {
  22. white-space: pre-wrap; /* Preserves spaces and line breaks */
  23. font-size: 16px;
  24. }
  25. .yellow {
  26. color: yellow;
  27. }
  28. .cyan {
  29. color: cyan;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div id="textDisplay" style="max-width: 800px; margin: auto;">
  35. <script src="client.js"></script>
  36. </body>
  37. </html>