-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
29 lines (27 loc) · 1.07 KB
/
Copy path404.html
File metadata and controls
29 lines (27 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 - Page Not Found</title>
<link rel="icon" type="image/png" href="https://harg2001.github.io/common/favicon.png" />
<link rel="stylesheet" href="https://harg2001.github.io/common/styles.css">
<link rel="stylesheet" href="https://harg2001.github.io/404.css">
<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=Share+Tech+Mono&display=swap" rel="stylesheet">
<script src="https://harg2001.github.io/common/autofetch.js"></script>
</head>
<body>
<div id="header-placeholder"></div>
<div id="navigation-placeholder"></div>
<main>
<h1>404</h1>
<p>Oops! The page you're looking for doesn't exist.</p>
<div class="buttons">
<button class="home-btn" onclick="window.location.href='index.html'">Go to Home</button>
<button class="back-btn" onclick="history.back()">Go Back</button>
</div>
</main>
<div id="footer-placeholder"></div>
</body>
</html>