portfolio / 404.html
LovnishVerma's picture
Upload 46 files
4a60f75 verified
<!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;
font-family: "Segoe UI", Roboto, sans-serif;
}
body {
background: linear-gradient(135deg, #1d1f27, #323544);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 600px;
padding: 2rem;
}
h1 {
font-size: 6rem;
font-weight: bold;
color: #ff4757;
margin-bottom: 1rem;
}
h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
p {
font-size: 1rem;
margin-bottom: 2rem;
color: #dcdcdc;
}
a {
display: inline-block;
padding: 0.75rem 1.5rem;
font-size: 1rem;
border-radius: 8px;
background: #ff4757;
color: #fff;
text-decoration: none;
transition: 0.3s;
}
a:hover {
background: #e84118;
transform: scale(1.05);
}
.emoji {
font-size: 3rem;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<div class="container">
<div class="emoji">🚫</div>
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Oops! The page you’re looking for doesn’t exist or has been moved.</p>
<a href="index.html">⬅ Back to Home</a>
</div>
</body>
</html>