generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
108 lines (105 loc) · 4.18 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
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta data -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Webpage description -->
<meta name="description" content="Sorry. An error occurred.">
<!-- Link to stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Page title for browser tab -->
<title>404 Error | Vikki Sponge Patisserie</title>
</head>
<body>
<header>
<!-- Logo and cover text -->
<div id="logo">
<div class="logo-background">
<a href="index.html">
<h1>Vikki Sponge</h1>
<h2>Patisserie</h2>
</a>
<div class="cover-text">
<div class="decor"></div>
<p>Delicious fresh cakes handmade by our expert bakers</p>
</div>
</div>
</div>
<!-- Navigation menu -->
<nav id="navigation">
<ul>
<li class="nav-index">
<a href="index.html">Home</a>
</li>
<li class="nav-gallery">
<a href="gallery.html">Gallery</a>
</li>
<li class="nav-contact">
<a href="contact.html">Contact Us</a>
</li>
<li class="nav-find">
<a href="find.html">Find Us</a>
</li>
</ul>
</nav>
<!-- Hero image -->
<div id="hero">
<div id="error-hero-image"></div>
</div>
</header>
<!-- Error text -->
<section id="error">
<div class="error-text">
<h2 class="heading">Ooops...</h2>
<p>404 ERROR</p>
<p>We're not sure what happened. Use the navigation menu to find some fresh cakes.</p>
</div>
</section>
<footer>
<!-- Newsletter sign up form -->
<section id="newsletter">
<div class="container">
<form action="newsletter-thank-you.html" method="GET" class="sign-up-form">
<div class="decor"></div>
<div class="nl-header">
<h3>Sign up for our Newsletter</h3>
<p>to recieve updates and special offers</p>
</div>
<input type="text" id="name-newsletter" name="name" placeholder="Enter name"
aria-label="Enter your name here" class="nl-input border" required>
<input type="email" id="email-newsletter" name="email_address" placeholder="Enter email address"
aria-label="Enter your email address here" class="nl-input border" required>
<div class="container">
<input type="submit" value="Sign Up" class="sign-up-button corners">
</div>
<div class="decor invert"></div>
</form>
</div>
</section>
<!-- Social media links -->
<div id="social-media">
<ul class="social-media-links">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i
class="fab fa-facebook-square"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"><i
class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"><i
class="fab fa-instagram-square"></i></a>
</li>
</ul>
</div>
</footer>
<!-- Font Awesome embed code -->
<script src="https://kit.fontawesome.com/8e292ce701.js" crossorigin="anonymous"></script>
</body>
</html>