Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
Latest commit
73 lines (63 loc) · 2.27 KB
/
Copy path404.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>
<metacharset="utf-8">
<metaname="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<linkrel="stylesheet" href="css/bootstrap.css">
<scriptsrc="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<scriptsrc="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>
<scriptsrc="js/bootstrap.js"></script>
<!--Favicon Crap-->
<linkrel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<linkrel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<linkrel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<linkrel="manifest" href="favicons/manifest.json">
<linkrel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#057aff">
<metaname="theme-color" content="#ffffff">
</head>
<body>
<divclass="container" id="content">
<h4class="error">404</html>
<h1class="message">¯\_(ツ)_/¯</h1>
<h3class="subtitle">The page you were looking for could not be found or does not exist.</h3>
<br>
<ahref="javascript:history.back()" class="btn btn-outline-primary">Back to previous page</a>
</div>
</body>
<style>
@importurl('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 */
@mediaonly 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>