-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
42 lines (38 loc) · 1.47 KB
/
404.html
File metadata and controls
42 lines (38 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found - Jason Trost</title>
<meta name="robots" content="noindex">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="alternate icon" type="image/x-icon" href="/favicon.ico">
<!-- Fonts -->
<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=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Hanken+Grotesk:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<a href="#main" class="skip-link">Skip to content</a>
<div class="container">
<nav aria-label="Main">
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/media.html">Media</a>
</nav>
<main id="main">
<h1>Page Not Found</h1>
<p>This page doesn't exist. It may have been moved or removed.</p>
<p><a href="/">Back to home</a></p>
</main>
<footer class="site-footer">
<nav aria-label="Footer" class="footer-pages">
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/media.html">Media</a>
</nav>
</footer>
</div>
</body>
</html>