-
Notifications
You must be signed in to change notification settings - Fork 2
/
404.html
33 lines (27 loc) · 911 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
<!DOCTYPE html>
<html lang="zh" style="max-width: 480px;">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404</title>
<link rel="stylesheet" href="./asset/index.css">
<link href="https://lib.baomitu.com/font-awesome/6.5.1/css/all.min.css" rel="stylesheet">
<base target="_blank">
</head>
<body>
<nav class="between">
<h2><a><i class="fa-solid fa-circle-exclamation"></i> 404</a></h2>
<a href=".."><i class="fa-solid fa-house-chimney"></i></a>
</nav>
<footer id="errorInfo"></footer>
<script>document.getElementById("errorInfo").innerHTML = location.href</script>
<div class="card">
<h4>页面不存在</h4>
<div class="list">
<strong><a href="/">返回根目录</a></strong>
</div>
</div>
<footer>© 2023 纸鹿</footer>
</body>
</html>