-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
47 lines (36 loc) · 765 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
//include header file
include ('include/header.php');
?>
<style>
.error{
color: #e74c3c;
font-size: 20em;
font-weight: 700;
}
a{
padding: 20px 0 0 0;
}
.head-para{
padding: 15px 0;
}
.container {
margin-bottom: 30px;
}
</style>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3">
<h1 class="text-center error">404</h1>
<div class="head-para">
<h3 class="text-center">OOPS, SORRY WE CAN'T FIND THAT PAGE!</h3>
<p class="text-center">Either something went wrong or that page dosent exist anymore.</p>
</div>
<a href="index.php" class="btn btn-lg btn-danger center-aligned">Home</a>
</div>
</div>
</div>
<?php
//include footer file
include ('include/footer.php');
?>