Defalt-404's picture
Add application file
ee5d33c
raw
history blame
No virus
1.17 kB
<!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>
body {
background-color: #f1f1f1;
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
}
.container {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 20px;
max-width: 600px;
margin: 0 auto;
}
h1 {
font-size: 48px;
color: #333;
}
p {
font-size: 18px;
color: #777;
}
a {
text-decoration: none;
color: #007bff;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>404 - Page Not Found</h1>
<p>The requested page could not be found.</p>
<p>Return to <a href="/">Homepage</a></p>
</div>
</body>
</html>