This repository has been archived by the owner on Sep 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
executable file
·53 lines (52 loc) · 1.64 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>404 错误!</title>
<script type="text/javascript">
var type = navigator.appName;
if (type == "Netscape"){
var lang = navigator.language;
}else{
var lang = navigator.userLanguage;
};
var lang = lang.substr(0, 2);
if (lang == "zh"){
}else if (lang == "en"){
window.location.replace('./404-en-US.html');
}else{
window.location.replace('./404-en-US.html');
};
</script>
</head>
<body>
<style>
body{
background-color: #00BCD0
}
.back{
background-color: #FF8080;
width: 100px;
height: 50px;
border-radius:15px;
font-family: "Bahnschrift", "Times New Roman";
font-size: 20px;
color: #FFFFFF
}
</style>
<p align="center">
<img src="./404-zh-CN.svg" height="80%" />
<button class="back" name="Submit" onclick="javascript:history.back(-1);">返回</button>
</p>
<p align="center">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/"><img alt="知识共享许可协议" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png" /></a><br />本作品采用<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/">知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议</a>进行许可。
</p>
<p align="center">
杭高钱江电视台©
</p>
</body>
</html>