Added 404 page

This commit is contained in:
Johannes Olzem 2023-11-25 12:19:53 +01:00
parent e01d3ebb96
commit 395a6c018a
Signed by: jolzem
GPG Key ID: DB5485828E95A447

29
404.html Executable file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Page not found - Johannes Olzem</title>
<meta name='description' content="Johannes Olzem's Webspace.">
<meta charset='utf-8'>
<link rel='stylesheet' href='/css/style.css'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='icon' href='/favico.ico'>
</head>
<body>
<header>
<a href='/'>Johannes Olzem's Webspace</a>
</header>
<nav>
<a href='/blog/'>Blog</a>
<a href='/about/'>About Me</a>
<a href='/contact/'>Contact</a>
</nav>
<main>
<h1>404 Error</h1>
<p>The page you requested couldn't be found. </p>
<a href='/'>Return to homepage</a>
</main>
<footer>
<h6><a href><script>document.write(window.location.href);</script></a></h6>
</footer>
</body>
</html>