-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
87 lines (78 loc) · 2.12 KB
/
Copy path404.html
File metadata and controls
87 lines (78 loc) · 2.12 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Oops! Page Not Found | Global Forces Ltd</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Uh-oh! The page you're looking for seems to have gone on a coffee break. Head back to the homepage and continue exploring Global Forces Ltd.">
<meta name="robots" content="noindex, follow">
<link rel="canonical" href="https://globalforcesltd.com/">
<style>
body {
margin: 0;
font-family: 'Arial', sans-serif;
background: #8a65ee;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 500px;
padding: 40px;
background: #fff;
border-radius: 16px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
h1 {
font-size: 96px;
margin: 0;
color: #ff589e;
}
h2 {
margin: 16px 0;
font-size: 24px;
color: #555;
}
p {
margin: 12px 0 24px;
font-size: 16px;
}
a {
text-decoration: none;
color: #fff;
background: #8a65ee;
padding: 12px 28px;
border-radius: 50px;
font-weight: bold;
transition: transform 0.2s ease, box-shadow 0.2s ease;
box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
}
a:hover {
transform: translateY(-3px);
box-shadow: 0 14px 30px rgba(13, 110, 253, 0.6);
}
.emoji {
font-size: 50px;
display: block;
margin-bottom: 12px;
}
</style>
</head>
<body>
<div class="container">
<span class="emoji">🤔🚀</span>
<h1>404</h1>
<h2>Lost in Space?</h2>
<p>Looks like this page took a detour to Mars! Don't worry, we’ve got you covered.</p>
<a href="index.html">Beam me back home</a>
</div>
</body>
</html>