-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·28 lines (27 loc) · 1.06 KB
/
404.php
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
<!DOCTYPE html>
<html lang="en">
<head><?php require 'head.php'?></head>
<body>
<?php include 'nav.php'?>
<script>
document.getElementById("navHeading").innerHTML = "404";
$(document).ready(function(){
$('a[href^="index.php"]').addClass('active');
});
</script>
<div class="container marketing">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7 order-md-2">
<h1> ERROR: 404<br>Page Not Found</h1> <br>
<h2> If you believe this to be an error, <br>
please <a href="https://maschmeyer.ca/contact.php"> click here </a> </h2>
</div>
<div class="col-md-4 order-md-1">
<img class="featurette-image img-fluid mx-auto" style="width: 100% height: 500px;" src="lost.jpg" data-holder-rendered="true">
</div>
</div>
<!-- FOOTER -->
<?php include 'footer.php'?>
</div>
</body>