generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
435 lines (435 loc) · 23.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Nick Lennon's home page containing a gallery, video links to his drum kit and percussion performances and information about future live performances.">
<script src="https://kit.fontawesome.com/d90f353352.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/phosphor-icons"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&family=PT+Sans:wght@400;700&family=Roboto+Condensed:wght@300;400;700&display=swap"
rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/style.css">
<title>Nick Lennon | Session Drummer</title>
</head>
<body>
<!--Navbar Element (template taken from Bootstrap Website https://getbootstrap.com/docs/5.0/components/navbar/)-->
<header class="navbar sticky-top">
<!--Logo Image-->
<a class="navbar-brand" href="index.html" aria-label="Go to the home page (logo link)">
<img src="assets/images/nicklennondrums_logo.png" class="logo-new d-inline-block align-top"
alt="Nick lennon logo">
</a>
<!--List containing Navbar links-->
<ul class="navbar-nav">
<li class="nav-item active d-none d-sm-block">
<!--Navbar Link Icon with Text-->
<a class="nav-link" href="index.html" aria-label="Go to the home page"><i class="fa fa-home"
aria-hidden="true"></i>Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<!--Navbar Link Icon with Text-->
<a class="nav-link" href="about-me.html" aria-label="Go to the about me page"><i class="fa fa-user"
aria-hidden="true"></i>About</a>
</li>
<li class="nav-item">
<!--Navbar Link Icon with Text-->
<a class="nav-link" href="lessons.html" aria-label="Go to the lessons page"><i
class="fa fa-graduation-cap" aria-hidden="true"></i>Lessons</a>
</li>
<li class="nav-item">
<!--Navbar Link Icon with Text-->
<button type="button" id="non-button" class="nav-link" data-bs-toggle="modal" data-bs-target="#contact-modal" aria-label="Go to contact information"><i class="fa fa-comment-dots"
aria-hidden="true"></i>Contact</button>
</li>
</ul>
</header>
<!--Contact Modal Element (template taken from Bootstrap Website https://getbootstrap.com/docs/5.0/components/modal/-->
<div class="modal fade" id="contact-modal" tabindex="-1" aria-labelledby="contact-model-label" aria-hidden="true">
<div class="modal-dialog">
<!--Div for modal box-->
<div class="modal-content">
<!--Modal Header-->
<div class="modal-header text-center">
<h5 class="modal-title fw-bold" id="contact-model-label">Get in Touch!</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<!--Modal Body-->
<div class="modal-body model-body-padding text-center">
<h5 class="">There are several ways to get in touch with me</h5>
<hr class="model-break">
<p class="fw-bold">Email Me:</p>
<p>nicklennondrums@gmail.com</p>
<!--Send Email Button-->
<a id="modal-email-button" href="mailto:nicklennondrums@gmail.com?subject=Email%20Contact%20From%20Website" class="btn text-center">Send Me an Email!</a>
<hr class="model-break">
<!--Social Media Links List-->
<p class="fw-bold">Find me on Social Media:</p>
<ul id="modal-social-links">
<li><a class="email-link colour-black" href="https://www.facebook.com/nicklennondrums/" rel="noopener" target="_blank">Facebook</a></li>
<li><a class="email-link colour-black" href="https://www.instagram.com/nicklennondrums/" rel="noopener" target="_blank">Instagram</a></li>
<li><a class="email-link colour-black" href="https://www.youtube.com/channel/UCG8qt6_9IDw_Ayx4IqkKctA" rel="noopener" target="_blank">YouTube</a></li>
<li><a class="email-link colour-black" href="https://soundcloud.com/nicholas-lennon" rel="noopener" target="_blank">Soundcloud</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- /Contact Modal -->
<!-- Hero Image -->
<section class="container-fluid g-0">
<div class="row g-0">
<!--Hero Image Background containing Image-->
<div class="col-12 hero-image-container" id="hero-image">
<!--Semi transparent image overlay-->
<div id="hero-overlay"></div>
<!--Floating title-->
<div id="title-overlay">
<h1>Nick Lennon</h1>
</div>
<!--Floating subtitle-->
<div id="subtitle-overlay">
<h2>Session Drummer</h2>
<h2>Drum Tutor</h2>
</div>
</div>
</div>
</section>
<!-- /Hero Image -->
<!-- What I Do -->
<section class="container-fluid g-0">
<div class="row g-0">
<div class="col-12" id="what-i-do-section">
<!--List containg Nav Links-->
<ul class="what-i-do-container">
<li class="col-4">
<!--Nav button-->
<a class="nav-icon what-i-do-button btn" href="#upcoming-performances-section "
aria-label="Go to live performance section">
<div>
<i class="fa fa-music" aria-hidden="true"></i>
<p>Live Performance</p>
</div>
</a>
</li>
<li class="col-4">
<!--Nav button-->
<a class="nav-icon what-i-do-button btn" href="lessons.html " aria-label="Go to lessons page">
<div class="lessons-button">
<i class="fa fa-graduation-cap" aria-hidden="true"></i>
<p>Lessons</p>
</div>
</a>
</li>
<li class="col-4">
<!--Nav button-->
<a class="nav-icon what-i-do-button btn" href="about-me.html#studio-credits-section "
aria-label="Go to studio credits section">
<div>
<i class="fa fa-microphone" aria-hidden="true"></i>
<p>Studio Recording</p>
</div>
</a>
</li>
</ul>
</div>
</div>
</section>
<!-- /What I Do -->
<!--Galley-->
<section class="container-fluid" id="gallery-section">
<div class="row">
<!--Section background with Title-->
<div class="col gallery-container">
<h2>Gallery</h2>
<!--Gallery contrast background-->
<div class="gallery-container-inner">
<!--Images container-->
<div class="row g-0" id="gallery">
<div class="col">
<img class="img-1 tl-corner" src="assets/images/gallery/gallery-photo-1.jpg"
alt="Nick Lennon drumming on the back deck of a cruise ship as the sunsets behind him">
<img class="img-1" src="assets/images/gallery/gallery-photo-2.jpg"
alt="view from the drum kit on stage at the Queen Mary two's ballroom">
<img class="img-2 bl-corner" src="assets/images/gallery/gallery-photo-3.jpg"
alt="Nick Lennon in formal wear with two other musicians">
</div>
<div class="col">
<img class="img-2 tr-corner" src="assets/images/gallery/gallery-photo-4.jpg"
alt="Nick Lennon with the London 2012 Olympic cauldron after the opening ceremony">
<img class="img-1" src="assets/images/gallery/gallery-photo-5.jpg"
alt="Percussion set up for a show on stage">
<img class="img-1 br-corner" src="assets/images/gallery/gallery-photo-6.jpg"
alt=" Nick Lennon sitting inside a half open drum case smiling">
</div>
<div class="col d-none d-sm-block">
<img class="img-1 sm-tr-corner d-none d-sm-block"
src="assets/images/gallery/gallery-photo-7.jpg" alt="Nick Lennon playing cajon on TV">
<img class="img-1 d-none d-sm-block" src="assets/images/gallery/gallery-photo-8.jpg"
alt="Selfie with the Queen Mary 2 World Voyage 2019 sign">
<img class="img-2 sm-br-corner d-none d-sm-block"
src="assets/images/gallery/gallery-photo-9.jpg" alt="Nick Lennon drumming">
</div>
<div class="col d-none d-lg-block">
<img class="img-2 md-tr-corner d-none d-md-block"
src="assets/images/gallery/gallery-photo-10.jpg"
alt="Nick Lennon drumming at a cruise ship sailaway party">
<img class="img-1 d-none d-md-block" src="assets/images/gallery/gallery-photo-11.jpg"
alt="Fairy lights reflecting off of a drum kit">
<img class="img-1 md-br-corner d-none d-md-block"
src="assets/images/gallery/gallery-photo-12.jpg" alt="Small drum kit set up from behind">
</div>
<div class="col d-none d-xl-block">
<img class="img-1 lg-tr-corner d-none d-lg-block"
src="assets/images/gallery/gallery-photo-13.jpg" alt="drum kit set up in a field">
<img class="img-1 d-none d-lg-block" src="assets/images/gallery/gallery-photo-14.jpg"
alt="small percussion and cajon set up">
<img class="img-2 lg-br-corner d-none d-lg-block"
src="assets/images/gallery/gallery-photo-15.jpg"
alt="the big band onboard the Queen Mary 2">
</div>
</div>
</div>
</div>
</div>
</section>
<!--/Galley-->
<!--Upcoming Performances Section-->
<section class="container-fluid" id="upcoming-performances-section">
<div class="row g-0">
<!--Section Title-->
<div class="col-12">
<h2>Upcoming Performances</h2>
</div>
</div>
<!--Upcoming Performance Cards Container-->
<div class="row g-0 performance-cards-container">
<!--Performance Card Background-->
<div class="col-12 col-sm-6 col-lg-4 col-xl-3 performance-button" id="performance-button-1">
<div class="row g-0">
<!--Performance Button Left Section-->
<div class="col-3 d-lg-none performance-button-left">
<i class="fa fa-calendar" aria-hidden="true"></i>
</div>
<!--Performance Button Middle Section-->
<div class="col-6 col-lg-12 performance-button-center">
<h4 class=" mb-1 mb-lg-3">West End Songs for a New World</h4>
<p class=" mb-0 pt-lg-2 mb-lg-1">Adelphi Theatre, London</p>
<p class=" mb-0 mb-lg-1">Date TBC</p>
</div>
<!--Performance Button Right Section (with link)-->
<a href="https://www.ticketsource.co.uk/" rel="noopener" target="_blank"
class="col-3 col-lg-12 performance-button-right"
aria-label="Go to ticket sellers page (opens in a new tab)">
Tickets
</a>
</div>
</div>
<!--Performance Card Background-->
<div class="col-12 col-sm-6 col-lg-4 col-xl-3 performance-button" id="performance-button-2">
<div class="row g-0">
<!--Performance Button Left Section-->
<div class="col-3 d-lg-none performance-button-left">
<i class="fa fa-calendar" aria-hidden="true"></i>
</div>
<!--Performance Button Middle Section-->
<div class="col-6 col-lg-12 performance-button-center">
<h4 class=" mb-1 mb-lg-3 single-text-line">Blues Night Jam</h4>
<p class=" mb-0 pt-lg-2 mb-lg-1">Venue TBC</p>
<p class=" mb-0 mb-lg-1">16th July 2021</p>
</div>
<!--Performance Button Right Section (with link)-->
<a href="https://www.ticketsource.co.uk/" rel="noopener" target="_blank"
class="col-3 col-lg-12 performance-button-right"
aria-label="Go to ticket sellers page (opens in a new tab)">
Tickets
</a>
</div>
</div>
<!--Performance Card Background-->
<div class="col-12 col-sm-6 col-lg-4 col-xl-3 performance-button" id="performance-button-3">
<div class="row g-0">
<!--Performance Button Left Section-->
<div class="col-3 d-lg-none performance-button-left">
<i class="fa fa-calendar" aria-hidden="true"></i>
</div>
<!--Performance Button Middle Section-->
<div class="col-6 col-lg-12 performance-button-center">
<h4 class=" mb-1 mb-lg-3 single-text-line">Party In The Park</h4>
<p class=" mb-0 pt-lg-2 mb-lg-1">Hyde Park, London</p>
<p class=" mb-0 mb-lg-1">20th August 2021</p>
</div>
<!--Performance Button Right Section (with link)-->
<a href="https://www.ticketsource.co.uk/" rel="noopener" target="_blank"
class="col-3 col-lg-12 performance-button-right"
aria-label="Go to ticket sellers page (opens in a new tab)">
Tickets
</a>
</div>
</div>
<!--Performance Card Background (only visable at desktop)-->
<div class="d-none d-xxl-block col-xxl-3 performance-button" id="performance-button-4">
<div class="row g-0">
<!--Performance Button Left Section-->
<div class="col-3 d-lg-none performance-button-left">
<i class="fa fa-calendar" aria-hidden="true"></i>
</div>
<!--Performance Button Middle Section-->
<div class="col-6 col-lg-12 performance-button-center">
<h4 class=" mb-1 mb-lg-3">Five Card Deck Album Release</h4>
<p class=" mb-0 pt-lg-2 mb-lg-1">Venue TBC</p>
<p class=" mb-0 mb-lg-1">7th November 2021</p>
</div>
<!--Performance Button Right Section (with link)-->
<a href="https://www.ticketsource.co.uk/" rel="noopener" target="_blank"
class="col-3 col-lg-12 performance-button-right"
aria-label="Go to ticket sellers page (opens in a new tab)">
Tickets
</a>
</div>
</div>
</div>
</section>
<!--/Upcoming Performances Section-->
<!--Live Performance Video Section-->
<section class="container-fluid" id="live-performance-section">
<!--Section background-->
<div class="row video-container-outer">
<!--Section Title-->
<div class="col-12">
<h2>Live Performance</h2>
</div>
<!--Video container-->
<div class="col col-lg-6 video-container">
<iframe class="live-performance-iframe" src="https://www.youtube.com/embed/GUtpBjRjwrU"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<!--Video container (only visable at desktop)-->
<div class="d-none d-lg-block col-lg-6 video-container">
<iframe class="live-performance-iframe" src="https://www.youtube.com/embed/mxPB_atc4no"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
</section>
<!--/Live Performance Video Section-->
<footer>
<!--Footer Background-->
<div class="container-fluid g-0" id="footer">
<div class="row g-0">
<!--Site map links with title (only visable at desktop)-->
<div class="d-none d-lg-block col-lg-4 site-map">
<h5>Site Map</h5>
<ul class="map-list">
<li>
<a href="index.html" aria-label="Go to home page">Home</a>
</li>
<li>
<a href="about-me.html" aria-label="Go to about me page">About Me</a>
</li>
<li>
<a href="index.html#what-i-do-section" aria-label="Go to what I do section">What I Do</a>
</li>
<li>
<a href="index.html#upcoming-performances-section"
aria-label="Go to upcoming performances section">Upcoming Performances</a>
</li>
<li>
<a href="about-me.html#studio-credits-section"
aria-label="Go to studio credits section">Studio Credits</a>
</li>
<li>
<a href="lessons.html" aria-label="Go to lessons page">Lessons</a>
</li>
<li>
<a href="lessons.html#lessons-example-section"
aria-label="Go to lessons example section">Wonder what a lesson would be like?</a>
</li>
</ul>
</div>
<!--Permenant Footer section (always visable)-->
<div class="col-sm-12 col-lg-8 permenant-footer">
<div class="col-sm-12 col-lg-6">
<!--Social Media Links-->
<ul class="social-links">
<li>
<!--Social Link-->
<a href="https://www.facebook.com/nicklennondrums/" rel="noopener" target="_blank"
aria-label="Go to my facebook page (opens in a new tab)">
<!--Facebook Logo-->
<i class="fa fa-facebook-square" aria-hidden="true"></i>
</a>
</li>
<li>
<!--Social Link-->
<a href="https://www.instagram.com/nicklennondrums/" rel="noopener" target="_blank"
aria-label="Go to my instagram page (opens in a new tab)">
<!--Instagram Logo-->
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</li>
<li>
<!--Social Link-->
<a href="https://www.youtube.com/channel/UCG8qt6_9IDw_Ayx4IqkKctA" rel="noopener" target="_blank"
aria-label="Go to my youtube page (opens in a new tab)">
<!--YouTube Logo-->
<i class="fa fa-youtube" aria-hidden="true"></i>
</a>
</li>
<li>
<!--Social Link-->
<a href="https://soundcloud.com/nicholas-lennon" rel="noopener" target="_blank"
aria-label="Go to my soundcloud page (opens in a new tab)">
<!--Soundcloud Logo-->
<i class="fa fa-soundcloud" aria-hidden="true"></i>
</a>
</li>
</ul>
</div>
<!--Get In Touch Details-->
<div class="row g-0">
<!--Call to email action (starts full width, then 50% then 33% width)-->
<div class="col-12 col-sm-6 order-1 order-sm-0 get-in-touch">
<h5>Get in touch!</h5>
<!--Link to open email client with pre filled send address-->
<p><a class="email-link colour-white" href="mailto:nicklennondrums@gmail.com?subject=Email%20Contact%20From%20Website">nick.lennon@hotmail.co.uk</a></p>
</div>
<!--Mailing list sign up form section (stacks above Call to email action at Mobile)-->
<div class="col mailing-list order-0 order-sm-1">
<div class="row g-0">
<!--Call to sign up title (displays at desktop)-->
<div class="d-none d-lg-block col-lg-12">
<h5>Stay up to date with me!</h5>
</div>
</div>
<!--Call to sign up-->
<p>Sign up to my mailing list for all my latest news</p>
<!--Sign up form-->
<form id="mailing-list-sign-up" aria-label="Sign up to my mailing list">
<input type="email" class="email-input" name="email" placeholder="Email Address"
required>
<input type="submit" class="btn submit" value="Sign Up!">
</form>
</div>
</div>
<div class="row g-0">
<!--Copyright information-->
<div class="col-md-12 col-lg-6 copyright">
<p><i class=" fa fa-copyright" aria-hidden="true"></i><span class="sr-only">Copyright</span>
nicklennondrums
</p>
</div>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>