-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
33 lines (33 loc) · 785 Bytes
/
404.html
File metadata and controls
33 lines (33 loc) · 785 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>页面未找到</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
background-color: #F5F5DC;
}
h1 {
color: #f00;
text-align: center;
padding: 10px;
}
p {
color: black;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<h1>404错误:您访问的页面不存在</h1>
<p>
您可能想要:<a href="https://xkk1.github.io/NewYearIsComing/">快过年了,不要再讨论什么……生成器</a>
</p>
</body>
</html>