-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
41 lines (38 loc) · 967 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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>404 页面 | ENSUser</title>
<link rel="icon" type="image/png" href="https://ensuser.com/icon/favicon-16x16.png" sizes="16x16">
<style>
* {margin: 0; padding: 0; text-align: center;}
.wrapper {margin: 0 auto;}
.wrapper img {max-width: 100%;}
.wrapper a {
display: block;
margin: 0 auto;
width: 260px;
height: 50px;
line-height: 50px;
font-size: 20px;
background-color: aliceblue;
color: #5284FF;
text-decoration: none;
border-radius: 5px;
transition: .5s;
}
.wrapper a:hover {
background-color: #5284FF;
color: white;
}
</style>
</head>
<body>
<div class="wrapper">
<img src="https://ensuser.com/images/404.png" alt=""><br>
<a href="/">返回首页</a>
</div>
</body>
</html>