-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
36 lines (26 loc) · 836 Bytes
/
404.html
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
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2" />
<meta name="robots" content="index, follow" />
<meta name="author" content="Daniel James" />
<meta name="description" content="Page Not Found" />
<meta name="theme-color" content="#0a0c10" />
<title>Page Not Found</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" type="image/png" href="img/dan.png" />
<link rel="apple-touch-icon" href="img/dan.png" />
</head>
<body>
<div class="container">
<div class="content">
<div class="content__fluid">
<h1>Not Found</h1>
<p>The requested page was not found. It was either moved, deleted or never existed.</p>
<a href="/" class="button">Back</a>
</div>
</div>
</div>
</body>
</html>