-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
46 lines (43 loc) · 1.63 KB
/
404.html
File metadata and controls
46 lines (43 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="assets/logo.png">
<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=Fira+Code:wght@300..700&display=swap" rel="stylesheet">
<title>Page Not Found...</title>
</head>
<body>
<nav class="navbar">
<div class="branding">
<img src="assets/logo.png" alt="EEHS Hack Club Logo" class="favicon">
<h1>Page Not Found</h1>
</div>
<ul>
<li><a href="/">Home</a></li>
<li><a href="projects">Projects</a></li>
<li><a href="donate">Donate</a></li>
<li><a href="join">Join</a></li>
<li><a href="contact">Contact Us!</a></li>
</ul>
</nav>
<div class="error-page">
<h1>404 - Page Not Found</h1>
<i>long dramatic pause...</i>
<p>Looks like ya got a bit lost, the page you are looking for does not exist.</p>
<img src="assets/confused_dino-removebg.png" alt="404 Error Image" class="error-image">
<br>
<br>
<button type="button" class="button" onclick="window.location.href='index'">Go Back Home</button>
</div>
<br>
<footer>
<p>Made with ❤️ by EEHS Hack Club</p>
<p>© 2026 Hack Club. 501(c)(3) nonprofit (EIN: 81-2908499)</p>
<a href="contact">Contact us here!</a>
</footer>
</body>
</html>