-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
25 lines (25 loc) · 902 Bytes
/
404.html
File metadata and controls
25 lines (25 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 Error - Page not found</title>
<link rel="stylesheet" href="./assets/fontawesome/css/fontawesome.css" />
<link rel="stylesheet" href="./assets/fontawesome/css/solid.css" />
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/common.css" />
<link rel="stylesheet" href="./css/e404.css" />
</head>
<body id="error404">
<header>
<h1>404</h1>
<h3>Page not Found</h3>
</header>
<main>
<section>
<p>Seems like the page you're looking for is lost somewhere in the depths of Mirkwood...</p>
<a href="index.html" title="Enough adventures, bring me home!">bring me home!</a>
</section>
</main>
</body>
</html>