-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
38 lines (36 loc) · 1.68 KB
/
404.html
File metadata and controls
38 lines (36 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<title>Page not found - ZoneCommunity</title>
<link rel="icon" href="/assets/Zone.png" type="image/png">
<link rel="stylesheet" type="text/css" href="/assets/style.css">
</head>
<body>
<div id="main">
<header id="header">
<button class="nav-button nav-button--logo" onclick="location.href='/';"></button>
<button class="nav-button" onclick="location.href='/zoneos';">ZoneOS</button>
<button class="nav-button nav-button--search"></button>
</header>
<section class="section section--hero">
<p class="section__title">404</p>
<p>Sorry, the page you were looking for could not be found.</p>
<a href="/"><button class="btn">Home</button></a>
</section>
</div>
<footer id="footer">
<p class="footer__left">© 2026 ZoneCommunity</p>
<div>
<a href="https://discord.com/invite/WTVGAMPnzN"><button class="footer__link">Discord</button></a>
<span class="footer__divider"></span>
<a href="https://www.youtube.com/@CreeperDaGuy"><button class="footer__link">YouTube</button></a>
</div>
<p class="footer__right"><button class="footer__link" onclick="location.href='/about';">About</button></p>
</footer>
</body>
</html>