-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
43 lines (39 loc) · 790 Bytes
/
404.html
File metadata and controls
43 lines (39 loc) · 790 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
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - 页面不见啦!</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f7f7f7;
text-align: center;
padding: 50px;
}
h1 {
color: #e74c3c;
font-size: 150px;
margin-bottom: 10px;
}
p {
color: #777;
font-size: 20px;
margin-top: 10px;
}
a {
color: #3498db;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>404</h1>
<p>看起来你走错地方啦。</p>
<p>回到<a href="/">首页</a>试试吧!</p>
</body>
</html>