-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
43 lines (37 loc) · 1.14 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
<html>
<head>
<title>Error 404</title>
<!-- HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="bootstrap-1.4.0/bootstrap.min.css">
<style type="text/css">
body {
padding-top: 60px;
}
</style>
<link href="style.css" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Google Analytics-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-28248621-1']);
_gaq.push(['_setDomainName', 'brianpartridge.name']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<center>
<h1>Page not found!</h1><br />
<p>Please visit the <a href="/">main page</a>.</p>
</center>
</body>
</html>