Files
old-website/site/src/404.html
2024-09-03 11:58:19 +02:00

27 lines
673 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page not found | janishutz.com</title>
<link rel="stylesheet" href="/css/style.css">
<style>
.content h1 {
font-size: 8rem;
margin: 0;
}
</style>
</head>
<body>
<nav></nav>
<div class="content">
<h1>404</h1>
<p>The page you are looking for was not found!</p>
<a href="/" class="button">Home</a>
</div>
<footer></footer>
</body>
</html>