-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
50x.html
42 lines (42 loc) · 874 Bytes
/
50x.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Error</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
h1 {
color: #333;
font-size: 5em;
}
p {
font-size: 1.5em;
color: #666;
}
a {
display: inline-block;
margin-top: 20px;
background-color: #5cb85c;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}
a:hover {
background-color: #4cae4c;
}
</style>
</head>
<body>
<h1>500</h1>
<p>网站内网页无法打开</p>
<p>Oops! Something went wrong on our end.</p>
<a href="/">Go Home</a>
</body>
</html>