-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
65 lines (56 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #f6f6f6;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.content {
text-align: center;
}
h1 {
font-size: 10rem;
margin: 0;
color: #999;
}
h2 {
color: #666;
font-size: 3rem;
margin: 0;
}
p {
color: #666;
}
.home-button {
display: inline-block;
margin-top: 2rem;
padding: 1rem 2rem;
background-color: #333;
color: #f6f6f6;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.home-button:hover {
background-color: #666;
}
</style>
</head>
<body>
<div class="content">
<h1>404</h1>
<h2>Oops! Page not found.</h2>
<p>The page you were looking for doesn't exist. You may have mistyped the address or the page may have moved.</p>
<a href="http://kai9987kai.pw" class="home-button">Go to Home Page</a>
</div>
<script>
// Any JavaScript code can be placed here.
</script>
</body>
</html>