-
Notifications
You must be signed in to change notification settings - Fork 226
/
404.html
44 lines (44 loc) · 965 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
<style>
body {
background-color: #282c34;
color: #61dafb;
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
.container {
max-width: 600px;
margin: 0 auto;
}
h1 {
font-size: 72px;
}
p {
font-size: 24px;
}
a {
color: #61dafb;
text-decoration: none;
border-bottom: 1px solid #61dafb;
transition: color 0.3s ease, border-bottom 0.3s ease;
}
a:hover {
color: #21a1f1;
border-bottom: 1px solid #21a1f1;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>Oops! The page you're looking for doesn't exist.</p>
<p>Let's get you back <a href="https://apu52.github.io/METAVERSE">home</a>.</p>
</div>
</body>
</html>