-
Notifications
You must be signed in to change notification settings - Fork 0
/
halloffame.html
100 lines (100 loc) · 4.38 KB
/
halloffame.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<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">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WCXC9D6HV7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WCXC9D6HV7');
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap" rel="stylesheet">
<title>Low Ink Hall of Fame</title>
<meta content="Low Ink Hall of Fame" property="og:title" />
<meta content="View the results of past Low Ink events." property="og:description" />
<meta content="https://lowink.iplabs.ink/halloffame" property="og:url" />
<meta content="https://lowink.iplabs.ink/assets/logo.png" property="og:image" />
<meta content="#F37002" data-react-helmet="true" name="theme-color" />
<script src="https://kit.fontawesome.com/66a42373e4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/hallofffamestyle.css">
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="arrows-bg">
<div class="page-gradient" id="real-body">
<div class="header-wrapper">
<div class="header-logo">
<a href="index.html">
<span class="clickable"></span>
</a>
<img src="assets/logo.png"/>
<div>LOW INK</div>
</div>
<div class="header-nav-mobile-menu" id="header-nav-button"><i class="fa-solid fa-bars"></i></div>
<div class="header-nav" id="header-nav">
<div class="play">
<i class="fa-solid fa-gamepad"></i>
<br>Play Low Ink
<a href="play.html">
<span class="clickable"></span>
</a>
</div>
<div>
<i class="fa-solid fa-circle-info"></i>
<br>How To Play
<a href="howtoplay.html">
<span class="clickable"></span>
</a>
</div>
<div>
<i class="fa-solid fa-tv"></i>
<br>Watch
<a href="watch.html">
<span class="clickable"></span>
</a>
</div>
<div class="selected">
<i class="fa-solid fa-trophy"></i>
<br>Hall Of Fame
<a href="halloffame.html">
<span class="clickable"></span>
</a>
</div>
</div>
<script>
var headerNavButton = document.getElementById("header-nav-button");
var headerNav = document.getElementById("header-nav");
headerNavButton.addEventListener("click", function() {
headerNav.classList.toggle("open");
});
</script>
</div>
<div class="page-title">
<i class="fa-solid fa-trophy"></i>Low Ink Hall of Fame
</div>
<div class="hof-wrapper" id="body">
<script src="js/halloffameloader.js"></script>
<h1 style="text-align: center; height: 80vh;" id="status">Loading...</h1>
</div>
</div>
</div>
<div class="divider"></div>
<div class="footer-wrapper">
<a href="https://iplabs.ink/">
<img style="height: 50px;"src="svg/ipl-powered.svg"/>
</a>
<p>Low Ink is a part of the Inkling Performance Labs family.
<br>
Designed by the IPL team.
</p>
</div>
</body>
</html>