-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwizcount.html
More file actions
62 lines (52 loc) · 3.11 KB
/
Copy pathwizcount.html
File metadata and controls
62 lines (52 loc) · 3.11 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
<!doctype html>
<html>
<head>
<title>OLD URL</title> <!-- Title desplayed in browser tab -->
<link rel="icon" type="image/svg" href="/assets/images/svg/icon-blue.svg">
<!-- CSS -->
<link rel="stylesheet" href="/assets/css/core.css">
<link rel="stylesheet" href="/assets/css/header-sidebar.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap">
<link rel="preconnect" href="https://fonts.gstatic.com">
<!-- JS -->
<script src="/assets/javascript/header-sidebar.js"></script>
<script src="https://www.gstatic.com/charts/loader.js"></script>
<!-- META -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="THIS IS AN OUTDATED URL AND WILL BE REMOVED SOON! GO TO 'https://www.plotzes.ml/playercount' FOR THE NEW LINK"> <!-- Description -->
<meta name="theme-color" content="#00f0f0">
<meta property="og:url" content="https://www.plotzes.ml/playercount"> <!-- URL to page -->
<meta property="og:type" content="website">
<meta property="og:title" content="Hypixel TNT Wizards Player Count"> <!-- Title of the page-->
<meta property="og:site_name" content="Plotzes">
<meta property="og:description" content="THIS IS AN OUTDATED URL AND WILL BE REMOVED SOON! GO TO 'https://www.plotzes.ml/playercount' FOR THE NEW LINK"> <!-- Description -->
<meta property="og:image" content="https://www.plotzes.ml/assets/images/png/playercount.png"> <!-- Image to use -->
<meta property="og:image:type" content="/assets/image/png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="plotzes.ml">
<meta property="twitter:url" content="https://www.plotzes.ml/playercount"> <!-- URL to page -->
<meta name="twitter:title" content="Hypixel TNT Wizards Player Count"> <!-- Title of the page -->
<meta name="twitter:description" content="THIS IS AN OUTDATED URL AND WILL BE REMOVED SOON! GO TO 'https://www.plotzes.ml/playercount' FOR THE NEW LINK"> <!-- Description -->
<meta name="twitter:image" content="https://www.plotzes.ml/assets/images/png/playercount.png"> <!-- Image to use -->
</head>
<body>
<div id="root" style="text-align: center;">
<div style="margin-top: 20vh;">
<h1 style="color: var(--main-color)">This is an outdated URL. You'll be redirected in 5 seconds.</h1>
<h1 id="count">-</h1>
<script>
function redirect() {
let i = 5;
setInterval(() => {
document.getElementById("count").innerHTML = i;
if(i-- <= 0) {
window.location = window.location.origin + "/playercount";
}
}, 1000);
}
window.addEventListener("load", redirect);
</script>
</div>
</div>
</body>
</html>