-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
66 lines (61 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<!-- Copyright (©) 2022 - 2024 Jesse Hodgson. All Rights Reserved -->
<head>
<title>Error 404 :(</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Language" content="en">
<meta name="description" content="Error 404 :( - SpaceGameDev's Website">
<meta name="Error 404 :( - SpaceGameDev's Website"/>
<meta name="keywords" content="space,spacegamedev,gamedev,spacegamedev568" />
<link rel="shortcut icon" type="image/ico" href="https://assets.spacegamedev.com/images\webp\sgd-logo-round.webp"/>
<link rel="stylesheet" href="/css/main.css" type="text/css">
<link rel="stylesheet" href="/css/pages/404.css" type="text/css">
<link rel="stylesheet" href="https://assets.spacegamedev.com/css/fonts.css">
<link rel="preconnect" href="https://assets.spacegamedev.com"/>
</head>
<!-- End Head, Start Body -->
<body>
<br><br><br><br>
<img alt="SpaceGameDev" style="display: block; margin-left: auto; margin-right: auto; width: 512px;" src="https:\\assets.spacegamedev.com\images\webp\monochrome-logo-large.webp">
<br><br><br>
<p style="display: block; margin-left: auto; margin-right: auto; text-align: center;" class="text">
Sorry, we couldn't find that page in this directory.<br><br> Would you like to go to the home page?<br><br><br>
<a class="dl-link" href="/index.html">Home</a>
</p><!-- style="color:#2871c5; background-color: var(--dark-foreground); padding: 6px 12px; border-radius: 5px; text-decoration: none; font-size: 26px;" -->
<style>
/* Copyright (©) 2022 - 2024 Jesse Hodgson. All Rights Reserved */
.dl-link {
/*color: #2871c5;
background: var(--dark-foreground);
padding: 6px 12px; border-radius: 5px;
text-decoration: none;
font-size: 26px;
text-align: center;*/
display: block;
margin-left: auto;
margin-right: auto;
background: var(--sgd-blue);
color: var(--dark-text);
padding: 9px 36px 9px 36px;
text-decoration: none;
text-align: center;
font-family: Open Sans, sans-serif;
font-size: 25px;
border-radius: 5px;
width: fit-content;
transition: background 0.3s;
}
.dl-link:hover {
background: #185485;
}
body.light .dl-link{
color: var(--light-foreground);
background: var(--light-sgd-blue);
}
body.light .dl-link:hover {
background: #015eaf;
}
</style>
</body>
</html>