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</nav> 19</header> 20 21<main> 22<h1>Error 404: Not Found</h1> 23<p>The requested resource was unable to be found.</p> 24</main> 25<footer role="group"> 26<div class="footer-link-list-holder"> 27<span aria-hidden="true" id="footer-label-social-accounts" class="footer-link-list-label">Social Accounts</span> 28<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts"> 29<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li> 30<li><a href="https://youtube.com/@s0g">YouTube</a></li> 31</ol> 32</div> 33</footer> 34</body> 35 36</html>