-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
42 lines (42 loc) · 863 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
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scale=no">
<title>404</title>
<style>
*{
margin: 0;padding: 0;
}
body {
background-color: #fff;
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#msg{
position: absolute;
top: 20%;
width: 100%;
text-align: center;
font-size: 16px;
}
h1{
font-size: 60px;
font-weight: 100;
margin-bottom: 50px;
}
a{
color: #4078c0;
text-decoration: none;
}
</style>
</head>
<body>
<div id="msg">
<h1>404</h1>
<p>
没有找到对应语言的版本 <a href="https://github.com/loverajoel/jstips">去翻译>></a>
</p>
</div>
</body>
</html>