-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
96 lines (87 loc) · 4.24 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
94
95
96
<!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">
<meta name="description" content="The Happy Space Co. website for the modern co-working space in Eastbourne">
<meta name="keywords" content="co-working, networking, collaboration, entrepreneur, remote work, startup">
<title>The Happy Space Co. | Page Not Found</title>
<link rel="stylesheet" href="assets/css/style.css">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicons/favicon-16x16.png">
</head>
<body>
<!-- Main header -->
<header>
<div class="inner">
<nav>
<!-- Main navigation -->
<ul class="nav">
<!-- Logo -->
<li id="logo"><a href="index.html"><img class="logo-glyph" width="46" height="46" src="assets/images/logo.svg"
alt="Happy sunshine">The Happy Space Co.</a></li>
<!-- end logo -->
<li class="nav__item"><a href="index.html">Home</a></li>
<li class="nav__item"><a href="pricing.html">Pricing</a></li>
<li class="nav__item"><a href="gallery.html">Gallery</a></li>
<li class="nav__item"><a href="contact.html">Contact</a></li>
<!-- Toggle for mobile menu -->
<li class="toggle"><a aria-label="toggle" href="#"><i class="ph-list"></i></a></li>
</ul>
</nav>
</div>
</header>
<!-- Page title section -->
<section class="hero--simple">
<div class="inner">
<div class="page-title">
<h1><span class="h1--underline">Uh oh!</span></h1>
<!-- Main content. Short paragraph and a button to go home -->
<p>This page seems to have gone missing! Let us guide you back to the home page.</p>
<a href="index.html" class="button">Go home</a>
</div>
</div>
</section>
<!-- Main footer -->
<footer>
<div class="inner">
<!-- Footer navigation -->
<ul class="footer__nav">
<li><a href="index.html">Home</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<!-- Address details -->
<address>
<span class="text--bold">The Happy Space Co.</span><br>
Hyde Gardens<br>
Eastbourne<br>
BN21 4PN<br>
</address>
<div class="social">
<!-- Contact details (phone and email) -->
<address class="social__contact">
<a class="text--phone" href="tel:+441323987654">01323 987 654</a><br>
<a href="mailto:[email protected]">[email protected]</a>
</address>
<!-- Social media icons -->
<ul class="social__icons">
<li><a href="https://twitter.com/" target="_blank" rel="noopener" aria-label="Twitter"><i class="ph-twitter-logo ph-xl"></i></a></li>
<li><a href="https://www.instagram.com/" target="_blank" rel="noopener" aria-label="Instagram"><i class="ph-instagram-logo ph-xl"></i></a></li>
<li><a href="https://www.facebook.com/" target="_blank" rel="noopener" aria-label="Facebook"><i class="ph-facebook-logo ph-xl"></i></a></li>
</ul>
</div>
</div>
<!-- Copyright -->
<div class="copyright text--sm">© 2021 The Happy Space Co. All rights reserved</div>
</footer>
<!-- Phosphor icons - powering the social media and arrow icons -->
<script src="https://unpkg.com/phosphor-icons"></script>
<!-- Mobile navigation script -->
<script src="assets/js/mobile-navigation.js"></script>
</body>
</html>