-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
23 lines (23 loc) · 785 Bytes
/
404.php
File metadata and controls
23 lines (23 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Error</title>
<link rel="icon" href="images/fav.png" sizes="36x36">
<link rel="stylesheet" type="text/css" href="css/stylesheet.css" important>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</head>
<body>
<div class="container" id="E404">
<?php require_once 'include/nav.php';?>
<main>
<h1>404 NOT FOUND</h1>
<a href="http://www.lewiswolfe.com/new/">Go back</a>
</main>
<div class="footer">
<p>© Copyright - Lewis Wolfe</p>
</div>
</div>
</body>
</html>