-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsoon.html
42 lines (42 loc) · 1.93 KB
/
soon.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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://kit.fontawesome.com/613e568d39.js" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/global/styles.css">
<link rel="stylesheet" href="/css/global/navbar.css">
<link rel="stylesheet" href="/css/global/footer.css">
<link rel="stylesheet" href="/css/pages/error/soon.css">
<link rel="shortcut icon" href="/assets/ServerLogo.png" type="image/x-icon">
<title>Soon™</title>
</head>
<body>
<!-- NAVBAR -->
<div class="navbar" id="navbar">
<nav>
<img src="/assets/ServerLogo.png" alt="JavaCommunityLogo">
<button class="hamburger" id="hamburger">
<i class="fa-solid fa-bars"></i>
</button>
<ul class="nav-ul" id="nav-ul">
<li><a href="/index.html">Home</a></li>
<li><a href="/rules.html">Rules</a></li>
<li><a class="active-link" href="/soon.html">Coming soon!</a></li>
</ul>
<div class="nav-right">
<a href="/r/github.html" target="_blank" class="social-btn"><i class="fa-brands fa-github fa-3x"></i></a>
<a href="/r/twitter.html" target="_blank" class="social-btn"><i class="fa-brands fa-twitter fa-3x"></i></a>
<a href="/r/join.html" target="_blank" class="join-btn">Join</a>
</div>
</nav>
</div>
<h1>More stuff coming soon!</h1>
<p class="error-text">Stay tuned for more stuff (e.g. QOTW Leaderboard) coming soon!</p>
<!-- FOOTER -->
<div class="footer-container">
<p>©️ 2023 Discord Java Community <br> We are not affiliated, associated, or endorsed with/by Discord or Oracle.</p>
</div>
</body>
</html>