404.html
HTML document, ASCII text
1
<!DOCTYPE html>
2
<html lang="en">
3
4
<head>
5
6
<meta charset="UTF-8" />
7
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
<title>404 Not Found - S0G</title>
9
<link rel="stylesheet" href="/src/global.css" />
10
11
</head>
12
13
<body>
14
<header>
15
<h2><a href="/">Steve0Greatness</a></h2>
16
<nav>
17
<a href="/blog">Blog</a>
18
<a href="/link-tree.html">Link Tree</a>
19
</nav>
20
</header>
21
22
<main>
23
<h1>Error 404: Not Found</h1>
24
<p>The requested resource was unable to be found. Maybe try going back to the <a href="/">index</a>?</p>
25
</main>
26
<footer role="group">
27
<div class="footer-link-list-holder">
28
<span aria-hidden="true" id="footer-label-social-accounts" class="footer-link-list-label">Social Accounts</span>
29
<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts">
30
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
31
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
32
</ol>
33
</div>
34
</footer>
35
</body>
36
37
</html>