-
Notifications
You must be signed in to change notification settings - Fork 191
/
404.html
72 lines (62 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css">
<style>
body {
background-color: #2c2c2c; /* Dark background color */
color: #f1f1f1; /* Light text color */
}
.container {
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
width: 100%;
}
.bg-image {
height: 400px;
width: 500px;
background-position: center;
background-size: cover;
background-image: url('https://cdn.dribbble.com/users/1879428/screenshots/3894567/media/fe1acc660a01fb84e9ad7d5cf07be278.gif');
}
.text-center {
text-align: center;
}
.fw-semibold {
font-weight: 600;
}
.btn-success {
background-color: #28a745;
}
.btn-lg {
padding: 10px 20px;
font-size: 1.25rem;
}
.dark-bg {
background-color: #333; /* Slightly lighter dark for the content box */
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<section class="bg-dark">
<div class="container">
<div class="text-center dark-bg">
<div class="bg-image"></div>
<div class="mt-3">
<h3 class="display-6 mb-1 fw-semibold">Looks like you're lost in Space</h3>
<p class="fw-semibold">The page you are looking for is not available!</p>
<a href="/" class="btn btn-success btn-lg my-4">Home</a>
</div>
</div>
</div>
</section>
</body>
</html>