generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
93 lines (90 loc) · 4.82 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="404 - Page Not Found">
<meta name="keywords" content="guide, Brazilian jiu-jitsu, bjj, Martial arts, fighting">
<meta name="author" content="Patrick O'Doherty">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css"
integrity="sha384-BY+fdrpOd3gfeRvTSMT+VUZmA728cfF9Z2G42xpaRkUGu2i3DyzpTURDo5A6CaLK" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
crossorigin="anonymous"></script>
<script defer src="https://kit.fontawesome.com/7524c78256.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<link href="assets/images/logo/red-kick-logo.png" rel="icon" type="image/x-icon">
<title>Little Origami - 404</title>
</head>
<body>
<header>
<!-- Bootstrap 5 Navigation Bar -->
<nav class="navbar navbar-expand-sm navbar-icon-top navbar-dark bg-dark">
<div class="container">
<!-- Little Origami Logo -->
<a class="navbar-brand d-flex" href="index.html">
<img src="assets/images/logo/red-kick-logo.png" alt="Logo" height="35"
class="d-inline-block align-top">
<h1>Little Origami</h1>
</a>
<!-- Menu Hamburger Animation -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarToggler"
aria-controls="navbarToggler" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navigation Links -->
<div class="collapse navbar-collapse" id="navbarToggler">
<ul class="navbar-nav ms-auto">
<li><span aria-current="page" class="sr-only">Page not found</span></li>
<li><a class="nav-link" href="index.html"><i
class="fa-solid fa-house"></i>Home</a></li>
<li><a class="nav-link active" href="history.html"><i
class="fa-solid fa-earth-asia"></i>History</a>
</li>
<li><a class="nav-link" href="contact.html"><i class="fa-solid fa-comments"></i>Contact
Us</a></li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<!-- Cat'not be Found -->
<div class="row cats section-padding">
<!-- Cat 1 -->
<iframe class="col-sm-4" src="https://giphy.com/embed/U6GixhwsEXOlZSYvqq" width="480" height="480"
allowFullScreen></iframe>
<!-- Cat 2 -->
<iframe class="col-sm-4" src="https://giphy.com/embed/BvNIKrJKQOEnATn76J" width="480" height="480"
allowFullScreen></iframe>
<!-- Cat 3 -->
<iframe class="col-sm-4" src="https://giphy.com/embed/1fnnX7RL2JrlUvII1V" width="480" height="480"
allowFullScreen></iframe>
</div>
</main>
<!-- Contact, Social Media, & User Message-->
<footer class="end row section-padding">
<!-- Congratulatory Message -->
<h2 class="text-center">Well Done! You Found Our Cats 🔥 </h2>
<div class="col-sm-6">
<!-- Social Media Links -->
<h3 class="text-center">Tell Us About it On Social Media:</h3>
<ul class="d-flex">
<li><a href="https://en-gb.facebook.com/" target="_blank"><i class="fa-brands fa-facebook"></i></a></li>
<li><a href="https://www.instagram.com/" target="_blank"><i class="fa-brands fa-instagram"></i></a></li>
<li><a href="https://www.snapchat.com/" target="_blank"><i class="fa-brands fa-snapchat"></i></a></li>
<li><a href="https://twitter.com/?lang=en" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
</li>
</ul>
</div>
<!-- Contact / Call To Action -->
<div class="footer-contact col-sm-6">
<h3 class="text-center"> Try Us Directly:</h3>
<a href="contact.html" class="btn btn-warning"> Contact Us </a>
</div>
</footer>
</body>
</html>