-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
43 lines (38 loc) · 1.18 KB
/
404.html
File metadata and controls
43 lines (38 loc) · 1.18 KB
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="zh-CN">
<head>
<meta charset="UTF-8">
<title>404 页面未找到</title>
<link rel="icon" type="image/ico" href="icons/favicon.ico">
<link rel="stylesheet" href="css/global-styles.css">
<script src="js/404Page/404.js"></script>
<script src="js/updateCopyright.js" defer></script>
<style>
.button {
display: inline-block;
padding: 10px 20px;
background-color: #000000;
color: #fff;
text-decoration: none;
font-weight: bold;
/* margin-top: 20px; */
margin: auto;
}
.button:hover {
background-color: #333333;
}
</style>
</head>
<body>
<div class="container">
<h1>页面未找到</h1>
<p>对不起,您请求的页面不存在或已被删除。</p>
<p>ERR CODE:404</p>
<a id="backButton" href="/mysite/" class="button">返回首页</a>
<p id="countdown">即将自动返回首页...</p>
</div>
<footer>
<p id="copyright">© <span id="currentYearinCopyright">2024</span> Eric Chan</p>
</footer>
</body>
</html>