-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplay.html
More file actions
104 lines (102 loc) · 4.96 KB
/
play.html
File metadata and controls
104 lines (102 loc) · 4.96 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
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
101
102
103
104
<!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>Play Low Ink</title>
<meta content="Play Low Ink" property="og:title" />
<meta content="Register for the next Low Ink event." 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/playstyle.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 selected">
<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-tv"></i>
<br>Watch
<a href="watch.html">
<span class="clickable"></span>
</a>
</div>
<div>
<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" id="page-title">
<i class="fa-solid fa-gamepad"></i>Play Low Ink
</div>
<div>
<div class="section-box">
<div class="section-box-title">
Register to play
</div>
<div class="section-box-divider"></div>
<div class="section-box-content">
<p>To register for upcoming Low Ink tournaments and see our previous events, check out our <a href="https://sendou.ink/org/inkling-performance-labs?series=88" target="_blank">sendou.ink page!</a></p>
<p>Registration not open yet? Join our Discord server to stay up to date on any announcements regarding our events!<br>Registration for Low Ink typically opens at the start of each month.</p>
<button class="register-button" onclick="window.open('https://sendou.ink/org/inkling-performance-labs?series=88', '_blank')" style="margin-bottom: 0;">Register on sendou.ink</button>
<button class="register-button" onclick="window.open('https://iplabs.ink/discord', '_blank')" style="margin-bottom: 0;">Join our Discord</button>
</div>
</div>
</div>
</div>
</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>