-
Notifications
You must be signed in to change notification settings - Fork 8
/
404.html
53 lines (48 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 Page</title>
<link rel="icon" type="image/jpg" href="favicon.jpg?v2" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
body {
background-image: url('spcae.gif');
background-attachment: fixed;
background-size: 100% 100%;
font-family: 'Press Start 2P'
}
a:link {
color: blue;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: purple;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: blue;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: blue;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<center>
<body>
<main>
<center>
<br><br><br><br><br><br><br><br><br><br>
<h1><font color="#ffffff">This is a 404 page, meaning that you don't belong here</h1>
</center>
</main>
</body>
</html>