-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
executable file
·127 lines (112 loc) · 2.92 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="zh-Hant" class="no-js">
<head>
<meta name="robots" content="noindex" />
<!-- 使用 noindex 禁止 Google 搜尋建立索引,套版時請工程師刪掉這行 -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>404!抱歉!找不到您的頁面!</title>
<!-- favicon -->
<link href="images/favicon.png" rel="icon" type="image/x-icon" />
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background: #004c93;
color: #fff;
}
.wrapper {
width: 100%;
max-width: 800px;
margin: 0px auto;
padding: 1em;
}
.wrapper h1 {
font-size: 10em;
display: block;
float: left;
width: 50%;
text-align: right;
margin: 0 30px 15px 0;
font-family: sans-serif;
}
.wrapper h2 {
overflow: hidden;
font-size: 2em;
padding-top: 2em;
}
.wrapper .error {
clear: both;
text-align: center;
}
.wrapper .error h3 {
margin-bottom: 1em;
}
.wrapper .error h3 small {
display: block;
}
.btnGrp {
clear: both;
margin: 2em 0;
text-align: center;
}
.btnGrp a {
display: inline-block;
border-radius: 5px;
padding: 0.5em 1.3em;
margin: 0 1em 1em;
min-width: 10em;
color: #fff;
text-align: center;
border: 1px solid #fff;
text-decoration: none;
transition: 0.3s ease-out;
}
.btnGrp a:hover,
.btnGrp a:focus {
background: rgba(0, 0, 0, 0.2);
box-shadow: none;
outline: none;
}
@media screen and (max-width: 767px) {
.wrapper h1 {
float: none;
margin: 10px 0 5px;
line-height: 1;
text-align: center;
width: 100%;
font-size: 8em;
}
.wrapper h2 {
clear: both;
text-align: center;
margin: 0;
padding: 0;
}
.wrapper .error {
margin-top: 1em;
}
}
</style>
</head>
<body>
<div class="wrapper">
<h1>404</h1>
<h2>抱歉!<br />找不到您的頁面!</h2>
<div class="error">
<h3>您瀏覽的網頁不存在,請再重新檢視 <small>The page you're visiting does not exit, please click.</small></h3>
<h3>
將在<span>2</span>秒後自動跳轉到首頁 <small>be redirected to homepage automatically in <span>2</span> seconds.</small>
</h3>
</div>
<div class="btnGrp">
<a href="javascript:history.back()" class="btn">回上一頁</a>
<a href="#" class="btn">回首頁</a>
</div>
</div>
</body>
</html>