-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from Yash-Ainapure/patch4
added 404-page
- Loading branch information
Showing
2 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<!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> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> | ||
<style> | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background-color: #f5f5f5; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
.container { | ||
text-align: center; | ||
padding: 20px; | ||
border-radius: 8px; | ||
background-color: #fff; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
.icon { | ||
font-size: 80px; | ||
color: #f44336; | ||
margin-bottom: 20px; | ||
} | ||
h1 { | ||
color: #333; | ||
margin-bottom: 10px; | ||
} | ||
p { | ||
color: #666; | ||
margin-bottom: 20px; | ||
} | ||
a { | ||
color: #2196F3; | ||
text-decoration: none; | ||
font-weight: bold; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<div class="icon"> | ||
<i class="fas fa-exclamation-circle"></i> | ||
</div> | ||
<h1>404 - Page Not Found</h1> | ||
<p>Sorry, the page you are looking for does not exist.</p> | ||
<p><a href="/">Go back to the home page</a></p> | ||
</div> | ||
</body> | ||
|
||
</html> |