-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 2.56 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="description" content="A tracker that counts how many times the word 'customs' has been mentioned in NickEh30's Twitch chat.">
<link rel="shortcut icon" href="images/favicon.png" type="image/png">
<meta name="author" content="TheCoolDoggo">
<title>NickEh30 Custom Tracker</title>
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="NickEh30 Custom Tracker">
<meta property="og:description" content="A tracker that counts how many times the word 'customs' has been mentioned in NickEh30's Twitch chat.">
<meta property="og:url" content="https://customtracker.tech/">
<meta property="og:image" content="https://customtracker.tech/images/preview.png">
<meta property="og:type" content="website">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
</head>
<body class="parallax">
<div class="container">
<header>
<h1>How many times has customs been asked for in NickEh30's Chat?</h1>
<button id="toggle-button">Show Daily Stats</button>
</header>
<main>
<section id="stats" class="fade-in">
<h2>Requesting custom games is against Nick's chat rules. However, new viewers often ask, so I created a fun tracker. :D</h2>
<div id="total-mentions">
<h3>Total Mentions:</h3>
<p id="mentions-count"></p>
</div>
<section id="top-user">
<h3>Top User:</h3>
<p id="top-user-info"></p>
</section>
<div id="users">
<h3>Top 10 Users:</h3>
<ul id="user-list"></ul>
</div>
</section>
</main>
<footer>
<img src="https://customtracker.tech/images/favicon.png" alt="Favicon" style="vertical-align: middle; margin-right: 1.5px; margin-bottom: 2px; width: 1em; height: 1em;">
<p style="display: inline;">Made with love by TheCoolDoggo. Go out into the world and create something amazing 🤍</p>
<p>Counting since 8/22/24</p>
</footer>
</div>
</body>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
<script src="main.js"></script>
</html>