-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path404.html
69 lines (69 loc) · 2.06 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oops! 404 Not Found</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&family=Merriweather:wght@700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f9f9f9;
color: #333;
text-align: center;
padding: 50px;
}
h1 {
font-size: 4rem;
margin-bottom: 20px;
color: #5b8db8;
font-family: 'Merriweather', serif;
}
p {
font-size: 1rem;
margin-bottom: 20px;
}
a {
color: #fff;
text-decoration: none;
font-size: 0.9rem;
background-color: #5b8db8;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s ease;
display: inline-block;
margin: 10px;
}
a:hover {
background-color: #3c6e91;
text-decoration: none;
}
.emoji {
font-size: 6rem;
margin-bottom: 30px;
animation: float 3s infinite;
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0px);
}
}
</style>
</head>
<body>
<div class="emoji">🤔</div>
<h1>Oops! 404</h1>
<p>It seems you've wandered off the map... This page doesn't exist.</p>
<p>No worries! Let's get you back on track:</p>
<p><a href="/">Take me home!</a></p>
<p>Or, you can play a fun game while you're here:</p>
<p><a href="game.html">Play the game!</a></p>
</body>
</html>