mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-06 20:55:18 +02:00
84 lines
1.7 KiB
HTML
84 lines
1.7 KiB
HTML
<!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>
|