-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
50 lines (49 loc) · 1.45 KB
/
404.html
File metadata and controls
50 lines (49 loc) · 1.45 KB
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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/css/404.css">
<title>Page Not Found | indigoBox Studios</title>
<style>
.main-container * {
color: #4E4E4E;
}
.main-container {
width: 500px;
margin-left: auto;
margin-right: auto;
line-height: 1.2em;
margin-top: 60px;
}
.main-container h1 {
padding: 30px 0px;
font-size: 2.5em;
}
.main-container ul {
list-style: initial;
margin-left: 2em;
font-size: 1.3em;
line-height: 1.3;
}
.main-container p {
font-size: 1.5em;
line-height: 1;
margin-bottom: 0.5em;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="/js/main.js"></script>
</head>
<body>
{% include header.html %}
<div class="main-container">
<div class="container">
<h1>404</h1>
<h2>We couldn't find the page that you were looking for!</h2>
<p>The page you were trying to view does not exist here. This may have been caused by a mistyped address or an expired link. Use the header to get back on track.</p>
</div>
</div>
</body>
</html>