-
Notifications
You must be signed in to change notification settings - Fork 2
/
404.html
executable file
·80 lines (72 loc) · 1.78 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
line-height: 1.5;
margin: 0;
}
html {
color: #888;
font-family: sans-serif;
text-align: center;
}
body {
left: 50%;
margin: -43px 0 0 -150px;
position: absolute;
top: 50%;
width: 300px;
}
a, img {
border: none;
}
img {
width:150px;
height:150px;
}
h1 {
color: #555;
font-size: 2em;
font-weight: 400;
}
p {
line-height: 1.2;
}
@media only screen and (max-width: 270px) {
body {
margin: 10px auto;
position: static;
width: 95%;
}
h1 {
font-size: 1.5em;
}
}
</style>
</head>
<body>
<a href="https://www.guidsnap.com"><img src="img/logo-grey-150.png" /></a>
<h1>Page Not Found</h1>
<p>Sorry, but the page you were trying to view does not exist.</p>
<script>
var _gaq=[['_setAccount','UA-48333471-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src='//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
<!--[if gt IE 8]><!-->
<script>
if(document.implementation.hasFeature('https://www.w3.org/TR/SVG11/feature#Image', '1.1')) {
var el = document.querySelector('img');
if (el) {
el.setAttribute('src', 'img/logo-grey.svg');
}
}
</script>
<!--<![endif]-->
</body>
</html>