-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
65 lines (58 loc) · 2.33 KB
/
404.html
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
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Luke | Web developer - Page not found</title>
<!-- content directives -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- favicons and icons -->
<link rel=" icon" type="image/png" href="./favicon.png" />
<link rel="shortcut icon" type="image/png" href="./favicon.png" />
</head>
<body>
<div class="nav__container">
<img class="nav__logo logo" src="./assets/svg/logo-no-text-v1.svg" alt="Luke | Web Developer">
<nav class="nav">
<div class="nav__close"><i class="fas fa-times"></i></div>
<ul class="nav__items">
<li class="nav__item"><a href="/" class="nav__link">About</a></li>
<li class="nav__item"><a href="/personal-projects" class="nav__link">Side
Projects</a></li>
<li class="nav__item"><a href="/contact" class=" nav__link">Contact</a></li>
</ul>
</nav>
</div>
<div class="nav__button"><i class="fas fa-ellipsis-h"></i></div>
<main>
<div class="container-fluid not-found-bg">
<div class="container not-found-container bg-grey p-t-l p-b-l">
<div class="row">
<div class="col-6 col-sm-12">
<div class="not-found-main-content">
<h1 class="m-b-m not-found-title">404 error: Page not found</h1>
<img src="./assets/img/404-graphic.webp" alt="Page not found">
</div>
</div>
<div class="col-6 col-sm-12">
<div class="not-found-info">
<p class="not-found-text-lg m-b-s">Where's the fucking website Lebowski?</p>
<small class="m-b-s">"Its down there somewhere, let me take another look"</small>
<p class="not-found-text m-b-s">Sorry.... it seems the page you are looking for doesn't exist.</p>
<a href="/">Back to the homepage</a>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="footer" style="position: absolute; bottom: 0;">
<div class="footer__text">
</div>
</footer>
<!-- font awesome -->
<script src="https://kit.fontawesome.com/f2ad0cb5b1.js" crossorigin="anonymous"></script>
<!-- page script -->
<script type="module" src="./src/js/index.js"></script>
</body>
</html>