generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvisit.html
380 lines (375 loc) · 17.2 KB
/
visit.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
<title>VISIT | Polygonal Brewing Co.</title>
</head>
<body class="d-flex flex-column">
<!-- HEADER -->
<header class="sticky-top">
<div class="nav-container container-fluid bg-custom">
<nav class="navbar navbar-expand-md navbar-dark">
<!-- LOGO -->
<a class="navbar-brand logo" href="index.html">
<img
src="assets/images/polygonal-logo-white-v2.png"
alt="Polygonal Brewing Logo"
/>
</a>
<!-- TOGGLE NAV ICON ON MOBILE -->
<button
class="navbar-toggler ml-auto"
type="button"
data-toggle="collapse"
data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!-- NAVIGATION -->
<div
class="collapse navbar-collapse"
id="navbarNavDropdown"
>
<ul id="nav" class="navbar-nav ml-auto">
<li class="nav-item text-center">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item text-center">
<a class="nav-link" href="beers.html">Beers</a>
</li>
<li class="nav-item text-center">
<a class="nav-link" href="brewery.html">
The Brewery
<span class="sr-only">
(current)
</span>
</a>
</li>
<li class="nav-item text-center">
<a class="nav-link active" href="visit.html">
Visit
<span class="sr-only">
(current)
</span>
</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!-- MAIN CONTENT AND FORM -->
<section class="page-content">
<div class="container content-container visit-content">
<div class="text-center">
<h2 class="uppercase center-title">Visit Us</h2>
</div>
<p>
We'd love to have you around, whether for a tasting or to
show you our facilities and walk you through the brewing
process. You are always welcome here.
</p>
<div class="form-wrapper">
<form>
<div class="form-row">
<div class="col form-group">
<input
class="form-control"
type="text"
name="name"
id="fullname"
placeholder="Name"
required
aria-label="Name"
/>
</div>
</div>
<div class="form-row">
<div class="col form-group">
<input
class="form-control"
type="email"
name="email"
id="email"
placeholder="Email"
required
aria-label="Email"
/>
</div>
</div>
<div class="form-row">
<div class="col form-group">
<label for="date">Date:</label>
<input
class="form-control"
type="date"
name="date"
id="date"
required
aria-label="date"
/>
</div>
<div class="col form-group">
<label for="time">Time:</label>
<input
class="form-control"
type="time"
name="time"
min="15:00"
max="23:45"
value="15:00"
id="time"
required
aria-label="time"
/>
</div>
</div>
<div class="form-row">
<div class="col form-group">
<label for="guests">Number of guests</label>
<input
class="form-control"
type="number"
id="guests"
name="guests"
min="1"
max="15"
placeholder="2"
required
aria-label="number of guests"
/>
</div>
<div class="col form-group">
<label for="visit-type">Type of visit</label>
<select
id="visit-type"
class="form-control custom-select"
name="visit-type"
aria-label="type of visit"
>
<option value="reservation">
Reservation
</option>
<option value="tour">Tour</option>
</select>
</div>
</div>
<div class="form-row form-group">
<div class="col">
<textarea
class="form-control"
name="comments"
id="form-comment"
rows="3"
placeholder="Anything you would like us to know about?"
aria-label="additional comments"
></textarea>
</div>
</div>
<div class="form-row form-group">
<div class="col">
<div class="form-check">
<input
class="form-check-input"
type="checkbox"
value=""
id="signup"
aria-label="subscribe to our newsletter"
/>
<label
class="form-check-label"
for="signup"
>
I'd like to subscribe to your newsletter
</label>
</div>
</div>
</div>
<div class="form-row">
<div class="col text-center">
<input
type="submit"
class="btn btn-primary"
value="cheers!"
aria-label="submit the form"
/>
</div>
</div>
</form>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="sticky-footer">
<div class="container-fluid bg-custom">
<div class="row footer-container text-center text-md-left">
<div class="col-md-3 footer-info">
<h4>Contact</h4>
<ul class="fa-ul">
<li>
<span class="fa-li d-none d-md-inline">
<i class="fa fa-location-arrow"></i>
</span>
<i
class="fa fa-location-arrow d-md-none pr-2"
></i>
123 Beer St.
<br />
Oslo, Norway
</li>
<li>
<span class="fa-li d-none d-md-inline">
<i class="fa fa-phone"></i>
</span>
<i class="fa fa-phone d-md-none pr-2"></i>
<a
aria-label="phone number"
href="tel:555-123-4567"
>
555-123-4567
</a>
</li>
<li>
<span class="fa-li d-none d-md-inline">
<i class="fa fa-envelope"></i>
</span>
<i class="fa fa-envelope d-md-none pr-2"></i>
<a
aria-label="email"
href="mailto:[email protected]"
>
</a>
</li>
</ul>
<hr class="d-md-none" />
</div>
<div class="col-md-3 hours">
<h4>Opening Hours</h4>
<table class="table hours-footer">
<tbody>
<tr>
<td>Monday:</td>
<td>12:00 - 00:00</td>
</tr>
<tr>
<td>Tuesday:</td>
<td>12:00 - 00:00</td>
</tr>
<tr>
<td>Wednesday:</td>
<td>12:00 - 00:00</td>
</tr>
<tr>
<td>Thursday:</td>
<td>12:00 - 1:00</td>
</tr>
<tr>
<td>Friday:</td>
<td>12:00 - 2:00</td>
</tr>
<tr>
<td>Saturday:</td>
<td>12:00 - 2:00</td>
</tr>
<tr>
<td>Sunday:</td>
<td>closed</td>
</tr>
</tbody>
</table>
<hr class="d-md-none" />
</div>
<div class="col-md-3 footer-form">
<h4>Stay In Touch</h4>
<form class="form-group">
<input
type="email"
required
class="form-control"
placeholder="Email"
aria-label="Email address"
/>
<div class="text-right">
<button
type="submit"
class="btn btn-primary form-control"
aria-label="submit the form"
>
send
</button>
</div>
</form>
<hr class="d-md-none" />
</div>
<div class="col-md-3 social">
<h4>Connect</h4>
<ul class="list-inline">
<li class="list-inline-item align-middle">
<a
aria-label="Go to Facebook"
href="https://facebook.com"
target="_blank"
rel="noopener"
>
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="list-inline-item align-middle">
<a
aria-label="Go to Twitter"
href="https://twitter.com"
target="_blank"
rel="noopener"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item align-middle">
<a
aria-label="Go to Instagram"
href="https://instagram.com"
target="_blank"
rel="noopener"
>
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="list-inline-item align-middle">
<a
aria-label="Go to Untappd"
href="https://untappd.com"
target="_blank"
rel="noopener"
>
<i class="fab fa-untappd"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- SCRIPTS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
</html>