-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
36 lines (33 loc) · 893 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">
<head>
<meta charset="utf-8">
<title>Page Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html {
color: #888;
display: table;
font-family: sans-serif;
height: 100%;
text-align: center;
width: 100%;
}
body {
display: table-cell;
vertical-align: middle;
margin: 2em auto;
}
h1 { font-family: 'Lato', sans-serif; }
p {
font-family: 'Open Sans', sans-serif;
line-height: 1.5em;
}
</style>
</head>
<body>
<h1>Page Not Found</h1>
<p>Sorry, but the page you were trying to view does not exist.</p>
<p>Perhaps you were looking for <a href="https://benyarb.com">benyarb.com</a>?</p>
</body>
</html>