generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
find.html
156 lines (153 loc) · 6.36 KB
/
find.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!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="View location and open times for Vikki Sponge Patisserie">
<!-- Keywords used by search engines -->
<meta name="keywords" content="vikki sponge patisserie, patisserie, bakery, café, cakes">
<!-- Link to stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Page title for browser tab -->
<title>Find Us | 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" class="active">Find Us</a>
</li>
</ul>
</nav>
<!-- Hero image -->
<div id="hero">
<div id="find-hero-image"></div>
</div>
</header>
<!-- Location and business hours -->
<section id="find">
<div class="container">
<div class="find-text">
<h3 class="heading">
Come and Visit Us
</h3>
<p>Enjoy fresh cakes at our café or purchase your treats from the bakery counter to enjoy at
home.</p>
</div>
<div class="row">
<div class="col-50">
<img src="assets/images/find-img.webp" class="corners" alt="Café window with seating outside">
</div>
<div class="col-50">
<div class="address border">
<h3><i class="fas fa-map-marker-alt"></i> Address</h3>
<p>101 Cake Street
<br>
Dessert Town
<br>
Puddingshire
<br>
TR3 4TS
</p>
</div>
<div class="times border">
<h3><i class="fas fa-clock"></i> Open Times</h3>
<p>
Monday: CLOSED
<br>
Tuesday: 10:00 – 18:00
<br>
Wednesday: 10:00 – 18:00
<br>
Thursday: 10:00 – 18:00
<br>
Friday: 10:00 – 18:00
<br>
Saturday: 10:00 – 18:00
<br>
Sunday: 10:00 – 16:00
</p>
</div>
</div>
</div>
</div>
<!-- Google maps -->
<div id="google-maps">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2358.6808471315103!2d-2.7014923999999993!3d53.7595658!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b727ab5c7d89d%3A0x23e52e1b2ae547e1!2sPatisserie%20Valerie!5e0!3m2!1sen!2suk!4v1679491657967!5m2!1sen!2suk"
class="map"></iframe>
</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>