-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
31 lines (27 loc) · 808 Bytes
/
Copy patherror.php
File metadata and controls
31 lines (27 loc) · 808 Bytes
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
<!DOCTYPE html>
<html lang="en">
<!-- Head -->
<?php include 'includes/head.php'; ?>
<!-- End Head -->
<body>
<!-- Navbar -->
<?php include 'includes/navbar.php'; ?>
<section class="my-10 my-5">
<div class="container">
<div class="row">
<div class="col-lg-6 my-auto">
<h1 class="display-1 text-gradient text-primary">Error 404</h1>
<h2>Erm. Page not found</h2>
<p class="lead">We suggest you to go to the homepage while we solve this issue.</p>
<a href="./home" class="nav-link custom-btn custom-border-btn btn">Go to Homepage</a>
</div>
<div class="col-lg-6 my-auto position-relative sm-mt-5">
<img class="custom-text-box-image img-fluid" src="./images/01.jpg" alt="404-error">
</div>
</div>
</div>
</section>
<!-- ------- Footer -------- -->
<?php include 'includes/footer.php'; ?>
</body>
</html>