-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
52 lines (52 loc) · 1.59 KB
/
404.php
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
<!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>
<link rel="stylesheet" href="./assets/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/css/main.styl.css">
<style>
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #f8f9fa;
}
.container {
max-width: 900px;
}
.funny-message {
font-size: 1.2rem;
color: #6c757d;
}
.animate {
animation: upDown 2s infinite alternate ease-in-out;
}
@keyframes upDown {
0% {
transform: translateY(-10px);
}
100% {
transform: translateY(10px);
}
}
</style>
</head>
<body>
<div class="container text-center">
<div class="row align-items-center">
<div class="col-md-6">
<img src="https://i.ibb.co.com/N6hBKjJy/7887410-3793094.png" alt="Funny 404 Image" class="img-fluid animate">
</div>
<div class="col-md-6">
<h1 class="display-1 fw-bold">404</h1>
<p class="lead">Oops! It looks like you took a wrong turn.</p>
<p class="funny-message">Even our GPS is confused! Try heading back to safety.</p>
<a href="/" class="btn btn-primary">Go Home</a>
</div>
</div>
</div>
</body>
</html>