-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
69 lines (66 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="head/RJs Games.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
text-align: center;
padding-top: 50px;
}
.container {
max-width: 600px;
min-width: 600px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
bottom: 165px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.cont {
max-width: 600px;
margin: 0 auto;
background-color: transparent;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
bottom: 190px;
}
h1 {
color: #d8cdff;
font-size: 128px;
}
p {
color: #333;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="cont">
<h1>404</h1>
</div>
<div class="container">
<p>Oops! The page you're looking for could not be found.</p>
<p>Maybe you mistyped the URL or the page has been removed.</p>
<p>Return to <a href="/">homepage</a></p>
</div>
</div>
</body>
</html>