This repository has been archived by the owner on Apr 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
96 lines (89 loc) · 3.75 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>震惊!居然发生了这种事! - 光源工作室</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" />
<meta name="renderer" content="webkit" />
<meta name="force-rendering" content="webkit" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- CACHE -->
<meta http-equiv="Cache-Control" content="max-age=86400 must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- CSS -->
<link rel="stylesheet" href="css/material-kit.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/nucleo-icons.css">
<link rel="stylesheet" href="css/nucleo-svg.css">
<!-- JS -->
<script src="js/material-kit.min.js"></script>
<script src="js/core/bootstrap.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/core/popper.min.js"></script>
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&family=Noto+Sans+SC&display=swap" rel="stylesheet">
<!-- FAVICON -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<!-- Header -->
<div id="nav"></div>
<!-- /Header -->
<!-- 简介 -->
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row align-items-center g-5 py-5">
<div class="col-lg-12">
<picture>
<source type="image/webp" srcset="img/404.webp">
<source type="image/jpeg" srcset="img/404.png">
<img class="d-block mx-auto mb-4" class="d-block mx-lg-auto img-fluid" width="75%"
src="img/404.png" loading="lazy">
</picture>
<div class="text-center">
<h1 class="display-5 fw-bold lh-1 mb-3 pb-3">404</h1>
<p class="text-dark lead mb-0 px-3">
怎么会这样!要不......去主页看看?
</p>
<section class="py-4 mt-3">
<div class="container">
<div class="row justify-space-between text-center py-1">
<div class="col-12 mx-auto">
<a type="button" class="btn bg-gradient-success btn-lg" target="_blank"
href="index.html">返回主页</a>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- /简介 -->
<!-- Footer -->
<script type="text/javascript">
function nowTime() {
var today = new Date();
var yyyy = today.getFullYear();
document.getElementById('nowDate').innerHTML = yyyy;
}
</script>
<div id="foot"></div>
<!-- /Footer -->
<!-- COMPONENTS -->
<script type="text/javascript">
$("#nav").load("components/nav.html #header");
$("#foot").load("components/nav.html #footer");
</script>
</body>
<script>
setInterval(nowTime, 1000);
</script>
</html>