forked from TylerPalko/gamehub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
48 lines (46 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>404</title>
<style>
body{
background-color: #202124;
color: #ffffff;
}
.heading {
text-align: center;
position: fixed;
width: 100%;
}
.footer {
position: fixed;
left: 0;
bottom:0;
width: 100%;
text-align: center;
}
a:link {
color: #8ab4f8;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: #c58af9;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #c58af9;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="heading">
<h1>This Page doesn't exist ¯\_(ツ)_/¯</h1>
</div>
</body>
</html>