-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
73 lines (63 loc) · 2.27 KB
/
404.html
File metadata and controls
73 lines (63 loc) · 2.27 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<head>
<title>404 - Hack River Dell 2017</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="js/bootstrap.js"></script>
<!--Favicon Crap-->
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/manifest.json">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#057aff">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="container" id="content">
<h4 class="error">404</html>
<h1 class="message">¯\_(ツ)_/¯</h1>
<h3 class="subtitle">The page you were looking for could not be found or does not exist.</h3>
<br>
<a href="javascript:history.back()" class="btn btn-outline-primary">Back to previous page</a>
</div>
</body>
<style>
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
body {
font-family: 'Lato', sans-serif;
background-color: #ECF3FA;
}
.error {
color: #b9b9b9;
}
.message {
font-size: 40pt;
font-family: 'Arial', sans-serif;
padding-top: 3rem;
padding-bottom: 3rem;
}
#content {
padding-top: 10rem;
text-align: center;
}
/* Portrait and Landscape */
@media only screen
and (min-device-width: 375px)
and (max-device-width: 667px)
and (-webkit-min-device-pixel-ratio: 2) {
#content {
padding-top: 3rem;
text-align: center;
}
.message {
font-size: 24pt;
}
.subtitle {
font-size: 14pt;
}
}
</style>
</html>