-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
33 lines (26 loc) · 766 Bytes
/
404.php
File metadata and controls
33 lines (26 loc) · 766 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
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Cars</title>
<?php
include "./includes/header.php"
?>
</head>
<body style="text-align: center;">
<?php
include "./includes/nav.php"
?>
<br>
<br>
<br>
<h1 style="color:whitesmoke;" class="text-center">Nothing Here!</h1>
<p class="text-center">Hmm, this doesn't seem like a car!</p>
<img src="./images/logos/cat.gif">
<button class="btn btn-warning btn-block btn-lg text-center" type="button" onclick="window.location.href='./index.php'">Back to Home</button>
<?php
include "./includes/footer.php"
?>
</body>
</html>