Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create 404.html #413

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404</title>
<style>
.sectionA{
font-family: Familjen Grotesk, sans-serif;
font-size: 250px;
text-align: center;
font-weight: bold;

}
.sectionAa{
font-family: Familjen Grotesk, sans-serif;
font-size: 50px;
text-align: center;
font-weight: bold;
}
.sectionAb{
font-family: Familjen Grotesk, sans-serif;
font-size: 20px;
text-align: center;
margin-top: 5%;
color: grey;
}
.greenbutton{
font-family: Familjen Grotesk, sans-serif;
font-size: 20px;
text-align: center;
font-weight: bold;
color: white;
background-color: #00796b;
padding: 10px 20px;
border-radius: 10px;
margin: 35% 35%;
margin-top: 5%;
}
footer a{
margin-top: -25%;
font-family: Familjen Grotesk, sans-serif;
display: flex;
justify-content: center;
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="sectionA">404</div>
<div class="sectionAa">Page Not Found</div>
<div class="sectionAb">The page you are looking for doesn't exist or has been moved</div>
<div type="button" class="greenbutton">GO HOME</div>
</div>
<footer>
<a target="_blank" href="https://github.com/vishantrathi">@VISHANT RATHI</a>
</footer>
</body>
</html>