forked from Bluecraft-Server/Bluecraft-Server.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
34 lines (34 loc) · 1.12 KB
/
404.html
File metadata and controls
34 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - 页面未找到</title>
<link rel="stylesheet" href="./css/404style.css">
<style>
.logo {
position: fixed;
top: 10px;
left: 10px;
width: 100px; /* 根据需要调整 LOGO 宽度 */
height: auto; /* 高度自适应 */
z-index: 10; /* 确保 LOGO 在最上层 */
}
</style>
</head>
<body>
<section class="error-body">
<!-- 背景视频 -->
<video preload="auto" class="background" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/396624/err.mp4" autoplay muted loop></video>
<!-- LOGO -->
<img src="./images/BluecraftLogo.svg" alt="Bluecraft Logo" class="logo">
<div class="message">
<h1 t="404">404</h1>
<div class="bottom">
<p>这个地方很奇怪,我们换个地方吧老师!</p>
<a href="index.html">返回主页面</a>
</div>
</div>
</section>
</body>
</html>