-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
57 lines (55 loc) · 862 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Page Not Found</title>
<style type="text/css">
body{
font-family:Arial, Helvetica, sans-serif;
}
.wrap{
width:1000px;
margin:0 auto;
}
.logo{
width:430px;
position:absolute;
top:25%;
left:35%;
}
p a{
color:#eee;
font-size:13px;
margin-left:30px;
padding:5px;
background:silver;
text-decoration:none;
-webkit-border-radius:.3em;
-moz-border-radius:.3em;
border-radius:.3em;
}
p a:hover{
color: #fff;
}
.footer{
position:absolute;
bottom:10px;
right:10px;
font-size:12px;
color:#aaa;
}
.footer a{
color:#666;
text-decoration:none;
}
</style>
</head>
<body>
<div class="wrap">
<div class="logo">
<img src="images/404.png" alt="404" />
<p><a href="./">Go back</a></p>
</div>
</div>
</body>
</html>