Skip to content

Commit

Permalink
background image removed
Browse files Browse the repository at this point in the history
  • Loading branch information
GyanPrakashRaj committed Oct 14, 2023
1 parent 531dd44 commit d9a87ab
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!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>
<style>
body {
background-color: aliceblue;
color: #000000;
font-family: Lucida, 'Courier New', Courier, monospace;
text-align: centeriii;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}

h1 {
font-size: 6em;
margin-bottom: 2px;
margin-top: 69px;
font-family: Lucida, 'Courier New', Courier, monospace;
color: rgb(71, 78, 213);
}

p {
font-size: 1.5em;
color: rgb(19, 19, 19);
font-weight:800;
}

#space-ship {
width: 200px;
animation: float 1s infinite alternate;
}
#space-ship2 {
width: 700px;
}
@keyframes float {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-20px);
}
}
</style>
</head>
<body>

<img src="https://res.cloudinary.com/dyqrxan1f/image/upload/v1696921205/unnamed_wazifp.png" alt="Space Ship" id="space-ship">
<img src="https://res.cloudinary.com/dyqrxan1f/image/upload/v1696920221/GDSC_Asansol_Engineering_College_West_Bengal_Horizontal_color_nswfs3.png" alt="Space Ship" id="space-ship2">
<h1>404</h1><p>Oops! The page you are looking for is lost in space.</p>
<p><a href="index.html">Back to Home</a></p>
</body>
</html>

0 comments on commit d9a87ab

Please sign in to comment.