Skip to content

Commit

Permalink
Create 404.html
Browse files Browse the repository at this point in the history
  • Loading branch information
merwin-asm authored Jun 3, 2024
1 parent 5bc7481 commit 27de161
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f2f2f2;
color: #333;
}
.container {
text-align: center;
}
.container h1 {
font-size: 120px;
margin: 0;
color: #e74c3c;
}
.container h2 {
font-size: 24px;
margin: 20px 0;
}
.container p {
font-size: 18px;
margin: 10px 0;
}
.container a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
font-size: 18px;
color: #fff;
background-color: #e74c3c;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.container a:hover {
background-color: #c0392b;
}
.container img {
width: 150px;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>Oops! Page not found</h2>
<p>Sorry, but the page you were looking for doesn't exist.</p>
<a href="/">Go to Homepage</a>
<img src="https://via.placeholder.com/150" alt="Logo">
</div>
</body>
</html>

0 comments on commit 27de161

Please sign in to comment.