Skip to content

Commit

Permalink
Create 404.html
Browse files Browse the repository at this point in the history
  • Loading branch information
vishantrathi authored Nov 7, 2024
1 parent d5e4053 commit 6bffcd0
Showing 1 changed file with 61 additions and 0 deletions.
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>

0 comments on commit 6bffcd0

Please sign in to comment.