-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
56 lines (52 loc) · 1.41 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<!-- This 404 page uses the Github Pages 404 page as a base. -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src 'unsafe-inline'; img-src data:; connect-src 'self'">
<title>Page not found</title>
<style type="text/css" media="screen">
/* 404 page gray background */
body {
background-color: #f1f1f1;
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.container {
margin: 200px auto 160px auto;
width: 100%;
height: 100%;
text-align: center;
}
a {
color: #4183c4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* 404 text CSS */
h1 {
position:relative;
letter-spacing: -1px;
line-height: 60px;
font-size: 60px;
font-weight: 100;
margin: 0px 0 30px 0;
text-shadow: 0 1px 0 #fff;
}
p {
color: rgba(0, 0, 0, 0.5);
margin: 20px 0;
line-height: 1.6;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p><strong>File not found</strong></p>
<p>Go back to <a href="http://ericshen.com/">ericshen.com</a> </p>
</div>
</body>
</html>