-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path404.html
More file actions
40 lines (40 loc) · 945 Bytes
/
404.html
File metadata and controls
40 lines (40 loc) · 945 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404/(ㄒoㄒ)/~~</title>
<link rel="shortcut icon" href="images/favicon.ico">
<style type="text/css">
body{
background-color: #f7f5f6;
}
#error{
width: 543px;
height: 300px;
background-color: #ffffff;
box-shadow: 0px 10px 40px 5px rgba(209, 240, 255, .85);
margin: 0 auto;
margin-top: 250px;
}
a{
display: block;
margin: 0 auto;
width: 300px;
text-decoration: none;
height: 40px;
background: #66ccff;
box-shadow: 0px 10px 20px 5px rgba(209, 240, 255, .85);
border-radius: 20px;
font-size: 16px;
font-weight: 400;
color: #ffffff;
line-height: 40px;
text-align: center;
}
</style>
</head>
<body>
<div id="error"><img src="images/error.png" ><a href="index.html">返回首页</a></div>
</body>
</html>