22 lines
619 B
HTML
22 lines
619 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 - Not Found</title>
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
<link rel="stylesheet" href="css/colors.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<img class="icon" width="32px" src="icons/pixelarticons/svg/file-delete.svg" alt="404 Icon">
|
|
<h1>404 - Not Found</h1>
|
|
<p>The page you're looking for doesn't exist.</p>
|
|
<p>
|
|
<a href="home/">Return to home</a> or explore the <a href="map/">site map</a>.
|
|
</p>
|
|
</body>
|
|
|
|
</html>
|