forked from GDGCampusAEC/gdsc-aec-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
59 lines (55 loc) · 1.72 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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>