Skip to content

Commit

Permalink
Update 404.html
Browse files Browse the repository at this point in the history
  • Loading branch information
lcpsgames authored Oct 18, 2024
1 parent 3e853d3 commit eb041e7
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion .github/404.html
Original file line number Diff line number Diff line change
@@ -1 +1,43 @@

<!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>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Chango&family=Roboto:wght@300&display=swap" rel="stylesheet">
<style>
body{
background-image: url("https://images.unsplash.com/photo-1616235132417-99f443954d2e?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=334&q=80");
background-size: cover;
font-family: 'Roboto', 'sans-serif';
}
main{
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
}
.header404{
font-family: 'Chango', cursive;
font-size: 48px;
}
.content404{
text-align: center;
}
</style>
</head>
<body>
<main>
<h4 class="header404">404</h4>
<div class="content-404">
Uh-oh! We couldn't find the page you are looking for.
</div>
<p>
<a href="/">Check our home page</a>
</p>
</main>

</body>
</html>

0 comments on commit eb041e7

Please sign in to comment.