-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpageNotFound.html
More file actions
59 lines (52 loc) · 2.65 KB
/
pageNotFound.html
File metadata and controls
59 lines (52 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/forum.css">
<script src="./js/discussion.js">
</script>
<script src=js/main.js>
</script>
<title>Page Not Found</title>
<style>
h1,
.center {
margin: 60px;
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
h1 {
font-size: 60px;
text-align: center;
}
</style>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card w3-left-align w3-large">
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-padding-large w3-hover-purple w3-large w3-purple" href="javascript:void(0);" onclick="myFunction()" title="Toggle Navigation Menu"><i
class="fa fa-bars"></i></a>
<a href="cal.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large">Calendar</a>
<a href="availability.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large">Availability</a>
<a href="coverShift.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large">Cover Shift</a>
<a href="#" class="w3-bar-item w3-button w3-hide-small w3-padding-large">Forum</a>
</div>
</div>
<img src="pictures/duke-dog-whoops.jpg" alt="JMU LOGO" class="center" style="height: 400px; width: auto;" />
<h1>404 Page Not Found</h1>
</body>
</html>