-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (55 loc) · 2.21 KB
/
index.html
File metadata and controls
67 lines (55 loc) · 2.21 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.webp" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Приколы для интеграций со стримами" />
<link rel="apple-touch-icon" href="/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json" />
<title>Приклюхи для стрима</title>
</head>
<body>
<audio id="wheel-music" loop>
<source src="/static/media/spinner_music.mp3" type="audio/mpeg" />
</audio>
<audio id="victory-music" loop>
<source src="/static/media/victory_music.mp3" type="audio/mpeg" />
</audio>
<audio id="thinking-music" loop>
<source src="/static/media/thinking_music.mp3" type="audio/mpeg" />
</audio>
<audio id="rickroll-music" loop>
<source src="/static/media/rickroll_music.mp3" type="audio/mpeg" />
</audio>
<audio id="wrong-answer-music">
<source src="/static/media/wrong_answer_music.mp3" type="audio/mpeg" />
</audio>
<audio id="nightsong-music" loop>
<source src="/static/media/nightsong_music.mp3" type="audio/mpeg" />
</audio>
<audio id="deathnote-music" loop>
<source src="/static/media/deathnote_music.mp3" type="audio/mpeg" />
</audio>
<audio id="light-music" loop>
<source src="/static/media/light_music.mp3" type="audio/mpeg" />
</audio>
<audio id="raphael-music" loop>
<source src="/static/media/raphael_music.mp3" type="audio/mpeg" />
</audio>
<audio id="ryuk-music" loop>
<source src="/static/media/ryuk_music.mp3" type="audio/mpeg" />
</audio>
<audio id="loto-music" loop>
<source src="/static/media/sonic_music.mp3" type="audio/mpeg" />
</audio>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>