24 lines
700 B
HTML
24 lines
700 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<title>404 Not Found</title>
|
||
<link rel="stylesheet" href="styles.css">
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<h1>
|
||
404 - The Page That Must Not Be Named
|
||
</h1>
|
||
<!-- <h2>
|
||
The Page That Must Not Be Named
|
||
</h2> -->
|
||
<div class="error-message">
|
||
It seems you’ve stumbled upon a forbidden corridor.<br>
|
||
Let’s get you back to a safer place, shall we?<br><br>
|
||
Maybe you were looking for the <a href="https://blog.amundsson.eu">library</a> or the <a href="https://niklas.amundsson.eu">history</a> classroom?
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|