-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
76 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
---
title: 404 Page Not Found
permalink: /404.html
---
<!DOCTYPE html>
<html lang="en">
<head>
<title>Error 404 (Page Not Found)</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<style>
p {
margin-right: 150px;
margin-left: 150px;
}
</style>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #000000;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #0000FF;
}
</style>
</head>
<body style="background-color:powderblue;">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
<center>
<h1><strong>Error 404</strong>. Page not found.</h1>
<p>The requested URL was not found on this server.</p>
<p>If you think this was a mistake, contact the Webmaster at <a href"mailto:michael.bateman@ucc.on.ca?Subject=Error%20404">michael.bateman@ucc.on.ca</a>.</p>
<a href="../index.html"><button class="btn btn-primary">Return Home</button></a>
<button type="button" class="btn btn-default" onclick="goBack()">Go Back</button>
<script>
function goBack() {
window.history.back();
}
</script>
</center>
</body>
<footer>
<center>
<p>__________________________________</p>
<p>© Michael Bateman 2016. This website utilizes the Bootstrap framework.</p>
</center>
</footer>
</html>