-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
61 lines (57 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href='images/logo.png' rel='shortcut icon'>
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Bree+Serif' rel='stylesheet' type='text/css'>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>404 - Page not found! · Alpha Magnus Studios</title>
<style>
body {
background: #2e7bcf;
text-align: center;
font-family: 'Architects Daughter';
}
h1 {
color: white;
font-size: 6em;
}
h2 a {
text-decoration: none;
color: white;
font-size: 1.5em;
border-radius: 15px;
border: 1px #9ddcff solid;
padding: 15px;
}
h3 {
color: #9ddcff;
font-family: 'Bree Serif';
font-size: 2em;
}
h5 {
color: #9ddcff;
font-size: 2em;
}
p {
color: white;
font-size: 1.5em;
}
</style>
</head>
<body>
<div>
<h1>404</h1>
<h3>Page not found!</h3>
<h5>Sorry, the page you were looking for could not be found!</h5>
<h2><a href="/">Go Home</a></h2>
<br><br>
<p>Copyright © <script>document.write(new Date().getFullYear());</script> <a href="https://www.alphamstudios.com" target="_blank" style="color:white;">Alpha Magnus Studios</a></p>
</div>
</body>
</html>