-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
74 lines (67 loc) · 1.77 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
70
71
72
73
74
<!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>404 - Game Over</title>
<style>
body {
font-family: 'Comic Sans MS', 'Arial', sans-serif;
background-color: #1c1c1c;
color: #ffffff;
text-align: center;
padding: 50px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
h1 {
font-size: 3em;
color: #ff4500;
}
p {
font-size: 1.2em;
margin-top: 20px;
}
img {
max-width: 100%;
height: auto;
margin-top: 20px;
animation: shake 2s infinite;
}
@keyframes shake {
0%, 100% {
transform: translateX(0);
}
50% {
transform: translateX(-10px);
}
}
a {
color: #00ff00;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>404 - Game Over</h1>
<p>Uh-oh! It seems like you've visited the wrong place in the game. Time to respawn and try again!</p>
<img src="/imges/image-removebg-preview.png" alt="Game Over image">
<p>Return to the <a href="/">main menu</a> and continue your adventure.</p>
</body>
<script src="stop.js"></script>
</html>