-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
73 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>404 - Page Not Found</title> | ||
<meta name="robots" content="noindex, follow"> | ||
<style> | ||
* { | ||
-webkit-box-sizing: border-box; | ||
box-sizing: border-box | ||
} | ||
|
||
body { | ||
font-family: sans-serif; | ||
} | ||
|
||
#notfound { | ||
height: 100svh; | ||
display: grid; | ||
place-content: center; | ||
} | ||
|
||
.notfound { | ||
max-width: 600px; | ||
width: 100%; | ||
text-align: center | ||
} | ||
|
||
.notfound-404 h1 { | ||
font-size: 4rem; | ||
margin: 0 0 1rem 0; | ||
} | ||
|
||
.notfound p { | ||
line-height: 1.5rem; | ||
font-size: 1rem; | ||
} | ||
|
||
.notfound a { | ||
font-size: 1rem; | ||
text-decoration: none; | ||
text-transform: uppercase; | ||
background: #333; | ||
display: inline-block; | ||
padding: 1rem 2rem; | ||
border-radius: 1rem; | ||
color: #fff; | ||
font-weight: 700; | ||
box-shadow: 0 4px 15px -5px #333 | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div id="notfound"> | ||
<div class="notfound"> | ||
<div class="notfound-404"> | ||
<h1>Oops!</h1> | ||
</div> | ||
<h2>404 - Page not found</h2> | ||
<p>Uh-oh! It seems the page you're looking for has either been removed, relocated, or may not exist at all. Before you | ||
venture further, double-check the URL in your browser. If all seems well, consider navigating back to our homepage to | ||
explore anew. Thanks for your understanding!</p> | ||
<a href="/">Go To Homepage</a> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |