-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmedia.html
503 lines (492 loc) · 25.2 KB
/
media.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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Bitter|Indie+Flower|PT+Sans"
rel="stylesheet">
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/fancyapps/[email protected]/dist/jquery.fancybox.min.css"/>
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon" />
<title>Portishead - Media</title>
</head>
<body>
<header>
<!--NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-bg navbar-expand-sm header-fixed">
<a class="navbar-brand lead navbar-link mr-4"
href="index.html">
<img src="assets/images/portishead_logo.png" alt="Portishead Logo" class="logo">
</a>
<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>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav mr-auto uppercase">
<li class="nav-item mr-2">
<a class="nav-link" href="index.html#about-section">About</a>
</li>
<li class="nav-item">
<a class="nav-link mr-2" href="tours.html">Tours</a>
</li>
<li class="nav-item mr-2 dropdown">
<a class="nav-link dropdown-toggle" href="media.html"
id="navbarDropdownMenuLink" role="button"
data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Media
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="media.html#media-gallery">Gallery</a>
<a class="dropdown-item" href="media.html#music">Music</a>
<a class="dropdown-item" href="media.html#video">Video</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#"
data-toggle="modal" data-target="#contact-modal">
Contact
</a>
</li>
<li class="nav-item">
<a class="nav-link mr-2 d-block d-md-none" href="#"
data-toggle="modal" data-target="#signUpModal">
Sign Up
</a>
</li>
</ul>
<div class="d-none d-md-block">
<a href="/login" class="btn btn-red-primary"
data-toggle="modal" data-target="#signUpModal">
Sign Up
</a>
</div>
</div>
</nav>
</header>
<!-- GALLERY -->
<section class="container-wrapper-gallery" id="media-gallery">
<div class="opaque-overlay">
<div class="container-fluid gallery-container">
<h1 class="uppercase text-center mb-5 mt-3">
<i class="fas fa-camera"></i> Gallery
</h1>
<div class="row pb-5">
<div class="col-12 col-md-4 col-lg-2 offset-lg-1 mt-2">
<a href="assets/images/band-image1.jpg"
data-fancybox="gallery" data-caption="Beth Gibbon">
<img src="assets/images/band-image1.jpg"
alt="Beth Gibbon" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image2.jpg"
data-fancybox="gallery" data-caption="Portishead">
<img src="assets/images/band-image2.jpg"
alt="Portishead band" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image3.jpg"
data-fancybox="gallery" data-caption="Beth Gibbon and Geoff Barrow">
<img src="assets/images/band-image3.jpg"
alt="Beth Gibbon and Geoff Barrow"
class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image4.jpg"
data-fancybox="gallery" data-caption="Portishead">
<img src="assets/images/band-image4.jpg"
alt="Portishead band" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image5.jpg"
data-fancybox="gallery" data-caption="Portishead">
<img src="assets/images/band-image5.jpg"
alt="Portishead band" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 offset-lg-1 mt-2">
<a href="assets/images/band-image6.jpg"
data-fancybox="gallery" data-caption="Beth Gibbon and Geoff Barrow">
<img src="assets/images/band-image6.jpg"
alt="Beth Gibbon and Geoff Barrow"
class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image7.jpg"
data-fancybox="gallery" data-caption="Portishead">
<img src="assets/images/band-image7.jpg"
alt="Portishead band" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image8.jpg"
data-fancybox="gallery" data-caption="Portishead">
<img src="assets/images/band-image8.jpg"
alt="Portishead band" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image9.jpg"
data-fancybox="gallery" data-caption="Beth Gibbon">
<img src="assets/images/band-image9.jpg"
alt="Beth Gibbon" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image10.jpg"
data-fancybox="gallery" data-caption="Portishead">
<img src="assets/images/band-image10.jpg"
alt="Portishead band" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 offset-lg-1 mt-2">
<a href="assets/images/band-image11.jpg"
data-fancybox="gallery" data-caption="Portishead concert">
<img src="assets/images/band-image11.jpg"
alt="Portishead band concert"
class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image12.jpg"
data-fancybox="gallery" data-caption="Portishead">
<img src="assets/images/band-image12.jpg"
alt="Portishead band"
class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image13.jpg"
data-fancybox="gallery" data-caption="Portishead">
<img src="assets/images/band-image13.jpg"
alt="Portishead band" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image14.jpg"
data-fancybox="gallery" data-caption="Geoff Barrow">
<img src="assets/images/band-image14.jpg"
alt="Geoff Barrow" class="gallery-img img-fluid">
</a>
</div>
<div class="col-12 col-md-4 col-lg-2 mt-2">
<a href="assets/images/band-image15.jpg"
data-fancybox="gallery" data-caption="Adrian Utley">
<img src="assets/images/band-image15.jpg"
alt="Adrian Utley" class="gallery-img img-fluid">
</a>
</div>
</div>
</div>
</div>
</section>
<!-- MUSIC -->
<section class="container-wrapper-music" id="music">
<div class="container music-container">
<h1 class="uppercase text-center mt-5 mb-5">
<i class="fas fa-headphones-alt"></i> Music
</h1>
<div class="row mx-0 d-flex justidy-content-center">
<div class="col-12 col-md-4 text-center">
<img src="assets/images/dummy-album.png"
class="img-fluid mb-3" alt="Dummy album image">
<h2 class=" uppercase media-sub-heading mt-4 mb-4">
Dummy, 1994
</h2>
<div class="d-flex justify-content-around mb-3">
<a href="https://music.apple.com/us/album/dummy/1440653096"
target="_blank" rel="noopener">
<img src="assets/images/app-store.png"
class="img-fluid music-buy-btn"
alt="App Store Button">
</a>
<a href="https://play.google.com/store/books/details/RJ_Wheaton_Portishead_s_Dummy?id=NciKgE5rn3gC"
target="_blank" rel="noopener">
<img src="assets/images/google-play.png"
class="img-fluid music-buy-btn"
alt="Google PLay Button">
</a>
</div>
<h4 class="uppercase music-buy-header mt-5 mb-3">
Listen on spotify
</h4>
<iframe class="music-player mb-4"
src="https://open.spotify.com/embed/album/3539EbNgIdEDGBKkUf4wno"
allow="encrypted-media">
</iframe>
</div>
<div class="col-12 col-md-4 text-center">
<img src="assets/images/portishead-album.png"
class="img-fluid mb-3"
alt="Portishead album image">
<h2 class="uppercase media-sub-heading mt-4 mb-4">
Portishead, 1997
</h2>
<div class="d-flex justify-content-around mb-3">
<a href="https://music.apple.com/us/album/portishead/1440933279"
target="_blank" rel="noopener">
<img src="assets/images/app-store.png"
class="img-fluid music-buy-btn"
alt="App Store Button">
</a>
<a href="https://play.google.com/store/books/details/RJ_Wheaton_Portishead_s_Dummy?id=NciKgE5rn3gC"
target="_blank" rel="noopener">
<img src="assets/images/google-play.png"
class="img-fluid music-buy-btn"
alt="Google PLay Button">
</a>
</div>
<h4 class="uppercase music-buy-header mt-5 mb-3">
Listen on spotify
</h4>
<iframe class="music-player mb-4"
src="https://open.spotify.com/embed/album/3G36754KQVLyGuskraEAVA"
allow="encrypted-media">
</iframe>
</div>
<div class="col-12 col-md-4 text-center">
<img src="assets/images/third-album.png"
class="img-fluid mb-3" alt="Third album image">
<h2 class=" uppercase media-sub-heading mt-4 mb-4">
Third, 2008
</h2>
<div class="d-flex justify-content-around mb-3">
<a href="https://music.apple.com/us/album/third/1440633834"
target="_blank" rel="noopener">
<img src="assets/images/app-store.png"
class="img-fluid music-buy-btn"
alt="App Store Button">
</a>
<a href="https://play.google.com/store/books/details/RJ_Wheaton_Portishead_s_Dummy?id=NciKgE5rn3gC"
target="_blank" rel="noopener">
<img src="assets/images/google-play.png"
class="img-fluid music-buy-btn"
alt="Google PLay Button">
</a>
</div>
<h4 class="uppercase music-buy-header mt-5 mb-3">
Listen on spotify
</h4>
<iframe class="music-player mb-4"
src="https://open.spotify.com/embed/album/18JyZd2XLdT2rmekw6EwoS"
allow="encrypted-media">
</iframe>
</div>
</div>
</div>
</section>
<!-- VIDEO -->
<section class="container-wrapper-video" id="video">
<div class="opaque-overlay">
<div class="container video-container">
<h1 class="uppercase text-center mt-5 mb-5">
<i class="fab fa-youtube"></i> Video
</h1>
<div class="row mx-2">
<div class="col-sm-6 mt-4 mb-4">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item"
src="https://www.youtube.com/embed/Z7If6GODLFc"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<h2 class="text-center uppercase media-sub-heading m-3">Numb</h2>
</div>
<div class="col-sm-6 mt-4 mb-4">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item"
src="https://www.youtube.com/embed/TmDkzVvherk"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<h2 class="text-center uppercase media-sub-heading m-3">Only you</h2>
</div>
</div>
<div class="row mx-2 mt-lg-3">
<div class="col-sm-6 mt-4 mb-4">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item"
src="https://www.youtube.com/embed/Vg1jyL3cr60"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<h2 class="text-center uppercase media-sub-heading m-3">Roads</h2>
</div>
<div class="col-sm-6 mt-4 mb-4">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item"
src="https://www.youtube.com/embed/ZNWm1sN-Tms"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<h2 class="text-center uppercase media-sub-heading m-3">Over</h2>
</div>
</div>
<div class="d-flex justify-content-center mx-2">
<p class="text-center video-paragraph">Watch more videos on our
<a href="https://www.youtube.com/channel/UC243a5RnwmItLvwhl0YOxbg"
target="_blank" class="btn btn-red-secondary youtube-link-video">
YouTube</a> channel
</p>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="container-fluid footer-container pt-4 pb-2">
<div class="row">
<div class="col-12 d-flex justify-content-center">
<ul class="list-inline social-links">
<li class="list-inline-item">
<a target="_blank"
href="https://www.facebook.com/portishead/">
<i class="fab fa-facebook" aria-hidden="true"></i>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank"
href="https://twitter.com/portisheadinfo">
<i class="fab fa-twitter" aria-hidden="true"></i>
<span class="sr-only">Twitter</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank"
href="https://www.instagram.com/portisheadmusic/">
<i class="fab fa-instagram" aria-hidden="true"></i>
<span class="sr-only">Instagram</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank"
href="https://www.youtube.com/channel/UC243a5RnwmItLvwhl0YOxbg">
<i class="fab fa-youtube youtube-footer" aria-hidden="true"></i>
<span class="sr-only">YouTube</span>
</a>
</li>
</ul>
</div>
</div>
<div class="disclaimer text-center">
<small>For educational purposes only | © 2021 by
<a href="https://github.com/irinatu17"
target="_blank" class="footer-author-link">
Irina Pozdeeva</a>
</small>
</div>
</footer>
<!-- SIGNUP MODAL -->
<div class="modal fade" tabindex="-1" role="dialog" id="signUpModal">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="w-100 text-center d-flex flex-column justify-content-center align-items-center">
<h3 class="modal-title modal-heading">
<i class="fas fa-envelope mr-1" aria-hidden="true"></i>
Sign up for our newsletter</h3>
<p class="signup-modal-paragraph">
Stay updated with the latest news!
</p>
</div>
<button type="button" class="close"
data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form class="form-inline w-100 my-2" id="signup-form">
<input type="email" class="form-control signup-modal-input mr-2 pb-2"
id="email-signup" placeholder="Email address" required>
<button type="submit" class="btn btn-red-secondary">
Subscribe
</button>
</form>
</div>
</div>
</div>
</div>
<!-- CONTACT MODAL -->
<div class="modal fade" tabindex="-1" role="dialog"
id="contact-modal" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title modal-heading">
Contact Portishead's manegment:
</h5>
<button type="button" class="close"
data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="name">Name:</label>
<input type="text" class="form-control contact-modal-input"
id="name" name="name"
placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="email">E-mail:</label>
<input type="email" class="form-control contact-modal-input"
id="email" name="email"
placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="name">Your enquiry:</label>
<!--The opening and closing tags for the <textarea> element
must be on the same line, otherwise a newline character
occupies it-->
<textarea class="form-control" id="enquiry" name="enquiry" placeholder="Enter your enquiry" rows="5" required></textarea>
</div>
<div class="form-group text-center">
<button type="submit" class="btn btn-red-primary text-center">
Submit
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- SCRIPTS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/fancyapps/[email protected]/dist/jquery.fancybox.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>