-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
27 lines (27 loc) · 897 Bytes
/
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
<html>
<head>
<title> Tech Support Central </title>
<style>
#MainBody {
height: 500px;
text-align: center;
background-color: #eeeeee;
padding: 20px 20px;
}
</style>
<link rel="stylesheet" type="text/css" href="includes/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body bgcolor="#323232">
<div id="Container">
<?php include 'includes/header.html';?>
<div id="MainBody">
<h2> 404: The page you were looking for could not be found. </h2>
<br>
<h1> This is not the page you are looking for! </h1>
<img src="404.jpg">
</div>
<?php include 'includes/footer.html';?>
</div>
</body>
</html>