This commit is contained in:
eshanized
2024-12-23 02:31:36 +05:30
commit 618c3ee17e
8 changed files with 583 additions and 0 deletions

83
404.html Normal file
View File

@@ -0,0 +1,83 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>404 - Page Not Found</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f4f7f6;
font-family: 'Poppins', sans-serif;
color: #333;
}
.container {
text-align: center;
max-width: 600px;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 6rem;
font-weight: 600;
color: #ff5c5c;
margin-bottom: 20px;
}
h2 {
font-size: 2rem;
margin-bottom: 30px;
color: #555;
}
.btn-home {
display: inline-block;
padding: 12px 30px;
font-size: 1.2rem;
background-color: #ff5c5c;
color: #fff;
text-decoration: none;
border-radius: 8px;
transition: background-color 0.3s;
}
.btn-home:hover {
background-color: #e04c4c;
}
.footer {
margin-top: 30px;
font-size: 1rem;
color: #aaa;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>Oops! The page you're looking for doesn't exist.</h2>
<a href="/" class="btn-home">Go Back to Home</a>
<div class="footer">
<p>Snigdha OS | 2024</p>
</div>
</div>
</body>
</html>