-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
executable file
·37 lines (36 loc) · 941 Bytes
/
404.html
File metadata and controls
executable file
·37 lines (36 loc) · 941 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8;"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="robots" content="all" />
<meta name="robots" content="index,follow"/>
<style>
html {
height: 100%;
color: #7a7a7a;
background-color: #e6e6e6;
/* -webkit-text-size-adjust: 100%; */
-ms-text-size-adjust: 100%;
_text-overflow: ellipsis;
/* text-rendering: optimizelegibility; */
}
body {
font: 12px/1.8 hiragino sans gb,microsoft yahei,simsun,sans-serif;
}
#page_not_found {
display: flex;
justify-content: center;
height: 90vh;
}
#page_not_found .message {
align-self: center;
}
</style>
</head>
<body>
<div id="page_not_found">
<div class="message">Hello, I am Jane.</div>
</div>
</body>
</html>