-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
86 lines (80 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Oh Snap!</title>
<link rel="icon" href="../assets/favicon.gif" type="image/gif" />
<link rel="stylesheet" href="./frontend/css/bootstrap.min (1).css" />
</head>
<style>
body {
background: url(https://flevix.com/wp-content/uploads/2019/12/bubble-animated-background.svg)
no-repeat center fixed;
height: 100%;
width: 100%;
background-size: cover;
overflow: hidden;
color: aliceblue;
margin-top: 20px;
}
code > h1 {
margin: auto;
width: fit-content;
}
.links a {
text-decoration: none;
color: aliceblue;
padding: 20px;
border-radius: 20px;
width: 150px;
text-align: center;
margin: 5px;
box-shadow: inset -50px 50px 45px #000e1f, inset 50px -50px 45px #00162f;
}
.links a:hover {
/* background-color: rgba(0,0,0,0); */
background-color: rgba(255, 255, 255, 0.06);
/* box-shadow: inset -50px 50px 45px #000e1f,
inset 50px -50px 45px #00162f; */
box-shadow: none;
}
.links {
width: 100vw;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
padding: 20px;
}
.head {
margin-left: 10%;
}
</style>
<body>
<code>
<h1>OOPS! IT SEEMS YOU TOOK A WRONG TURN :/</h1>
<h1>RESOURCE NOT FOUND !</h1>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player
src="https://assets3.lottiefiles.com/packages/lf20_AYcZiy.json"
mode="bounce"
background="transparent"
speed="1"
style="width: 300px; height: 300px; margin: auto"
loop
autoplay
></lottie-player>
<div class="redirects">
<div class="head"><h1>GO BACK</h1></div>
<div class="links">
<a href="./index.html">🏠HOME</a>
<a href="./pages/register.html">❤️DONATE</a>
<a href="./pages/locate.html">🔎FIND A DONOR</a>
<a href="./pages/contact.html">📞CONTACT US</a>
<a href="./pages/about.html">💻ABOUT US</a>
</div>
</div>
</code>
</body>
</html>