-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 861 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Audio Streamer with TTS and WebSocket</title>
<script src="client.js" defer></script>
<style>
body {
background-color: #282c34;
color: white;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
height: 100vh;
margin: 0;
}
.text-display {
max-width: 800px;
margin: auto;
white-space: pre-wrap; /* Preserves spaces and line breaks */
}
.yellow {
color: yellow;
}
.cyan {
color: cyan;
}
</style>
</head>
<body>
<div id="textDisplay" class="text-display"></div>
</body>
</html>