-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
52 lines (43 loc) · 1.54 KB
/
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
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#F7922F">
<meta name="robots" content="noindex, nofollow">
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon">
<link rel="stylesheet" href="./styles/style.css">
<title>Not Found</title>
<style>
.err_h1 {
font-size: 3rem;
font-weight: bold;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.2em;
}
.err_img {
height: auto;
margin: -40px 0;
z-index: -1;
}
.err_p {
width: 80%;
max-width: 500px;
font-size: 0.9rem;
}
</style>
</head>
<body>
<?php require './components/header.php'; ?>
<main class="flex direction-col items-center justify-center">
<h1 class="yellow-text err_h1 mt-40">Not Found</h1>
<img src="./images/lost.gif" width="400" class="err_img" alt="page not found">
<p class="text-center err_p">Uh oh! It seems like you've landed on a page that's currently on vacation or enjoying an extended coffee break. We are trying to calling it back</p>
<a href="./index.php" class="button border-curve mt-20">Go Home</a>
</main>
<?php require './components/footer.php'; ?>
<script src="./js/app.js" type="module"></script>
</body>
</html>