93 lines
2.2 KiB
HTML
93 lines
2.2 KiB
HTML
<!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>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body, html {
|
|
height: 100%;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f1f1f1;
|
|
}
|
|
|
|
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
background-color: #f1f1f1;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 10rem;
|
|
color: #FF6347;
|
|
letter-spacing: 1rem;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
|
|
animation: bounce 1s infinite;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2rem;
|
|
color: #555;
|
|
}
|
|
|
|
p {
|
|
margin: 20px 0;
|
|
font-size: 1.2rem;
|
|
color: #777;
|
|
}
|
|
|
|
.home-link {
|
|
padding: 12px 30px;
|
|
background-color: #FF6347;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-size: 1.2rem;
|
|
border-radius: 50px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.home-link:hover {
|
|
background-color: #ff4500;
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%, 100% {
|
|
transform: translateY(0);
|
|
}
|
|
50% {
|
|
transform: translateY(-10px);
|
|
}
|
|
}
|
|
|
|
.error-image {
|
|
width: 300px;
|
|
height: auto;
|
|
margin: 20px auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div>
|
|
<h1>404</h1>
|
|
<h2>Oops! Page Not Found</h2>
|
|
<img src="https://via.placeholder.com/300x300?text=Oops" alt="Error Image" class="error-image">
|
|
<p>It looks like the page you are trying to reach doesn't exist.</p>
|
|
<p>But don't worry, you can go back to the homepage by clicking the button below.</p>
|
|
<a href="/" class="home-link">Go Home</a>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|