-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (70 loc) · 3.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="30">
<!-- Define meta tags for link previews -->
<meta property="og:title" content="Hypixel Stats">
<meta property="og:description" content="Check out the levels of BachErik, Lets_Play_Nik, and McModknower on Hypixel!">
<meta property="og:image" content="https://gen.plancke.io/exp/BachErik_.png">
<meta property="og:image" content="https://gen.plancke.io/exp/Lets_Play_Nik.png">
<meta property="og:image" content="https://gen.plancke.io/exp/McModknower.png">
<meta property="og:url" content="https://bacherik.github.io/Hypixel-Stats-generator/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Hypixel Stats">
<meta name="twitter:description" content="Check out the levels of BachErik, Lets_Play_Nik, and McModknower on Hypixel!">
<meta name="twitter:image" content="https://gen.plancke.io/exp/BachErik_.png">
<meta name="twitter:image" content="https://gen.plancke.io/exp/Lets_Play_Nik.png">
<meta name="twitter:image" content="https://gen.plancke.io/exp/McModknower.png">
<meta name="twitter:url" content="https://bacherik.github.io/Hypixel-Stats-generator/">
<title>Hypixel Stats</title>
<style>
body {
background-color: #1f1f23;
color: #fff;
font-family: "minecraft", sans-serif;
}
p {
margin: 0;
}
img {
display: block;
margin: 10px 0;
}
#countdown {
margin-top: 20px;
font-size: 18px;
}
@font-face {
font-family: 'minecraft';
src: url('Minecraftia.ttf') format('truetype');
}
</style>
<script>
function countdown() {
var seconds = 30;
setInterval(function() {
seconds--;
if (seconds <= 0) {
window.location.reload();
}
document.getElementById("countdown").innerHTML = "Next refresh in " + seconds + " seconds";
}, 1000);
}
</script>
</head>
<body onload="countdown()">
<p>BachErik:</p>
<img src="https://gen.plancke.io/exp/BachErik_.png" width="910" height="40" alt="BachErik Level">
<img src="https://gen.plancke.io/achievementPoints/BachErik_.png" width="910" height="40" alt="BachErik Achievement">
<p>NikOverflow:</p>
<img src="https://gen.plancke.io/exp/NikOverflow.png" width="910" height="40" alt="NikOverflow Level">
<img src="https://gen.plancke.io/achievementPoints/NikOverflow.png" width="910" height="40" alt="NikOverflow Achievement">
<p>McModknower:</p>
<img src="https://gen.plancke.io/exp/McModknower.png" width="910" height="40" alt="McModknower Level">
<img src="https://gen.plancke.io/achievementPoints/McModknower.png" width="910" height="40" alt="McModknower Achievement">
<div id="countdown">Next refresh in 30 seconds</div>
</body>
</html>