-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
27 lines (24 loc) · 1.04 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CodingGarden Twitch Alerts</title>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="alerts" id="alerts">
<img id="cj-ani" src="assets/thankyou.gif"></img>
<p id="speech" class="speech"></p>
</div>
<script src="https://unpkg.com/[email protected]/dist/purify.min.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.3/socket.io.js' type='text/javascript'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.26.1/axios.min.js"></script>
<script src="lib/tmi.min.js"></script>
<script src="js/config.js"></script>
<script src="js/parseEmotes.js"></script>
<script src="js/app.js"></script>
</body>
</html>