-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
36 lines (30 loc) · 1013 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
36
<html>
<head>
<title>Highlighted Messages on Stream!</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-135113520-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-135113520-1');
</script>
<script src="web/comfy.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Hind|Open+Sans&display=swap" rel="stylesheet">
<link href="web/style.css" rel="stylesheet">
</head>
<body>
<div id="parent-container" class="parent-container">
<div id="highlight-container" class="translucent-bg">
<h2><span id="badges"></span> <span id="username"></span></h2>
<p id="text"></p>
</div>
</div>
<audio id="audio" controls="" style="visibility: hidden;">
<source id="source" type="audio/wav">
</audio>
<script src="web/index.js"></script>
</body>
</html>