-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
57 lines (52 loc) · 997 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 charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>404</title>
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
background-color: #444;
font-size: 14px;
}
h3 {
margin-top: -100px;
font-size: 60px;
color: #eee;
text-align: center;
font-weight: normal;
}
.a {
width: 100%;
display: flex;
justify-content: center;
}
a {
font-size: 40px;
color: #eee;
font-weight: normal;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div>
<h3>404,您请求的文件不存在!</h3>
<div class="a"><a href="/">返回首页</a></div>
</div>
</body>
</html>