generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout-me.html
383 lines (383 loc) · 23.1 KB
/
about-me.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
<!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="Want to know more about drummer and percussionist Nick Lennon? This page contains his biography, studio credits and career highlights">
<script src="https://kit.fontawesome.com/d90f353352.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/phosphor-icons"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.3.1/css/hover-min.css"
integrity="sha512-csw0Ma4oXCAgd/d4nTcpoEoz4nYvvnk21a8VA2h2dzhPAvjbUIK6V3si7/g/HehwdunqqW18RwCJKpD7rL67Xg=="
crossorigin="anonymous" />
<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 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</a>
</li>
<li class="nav-item active">
<!--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 <span class="sr-only">(current)</span></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-->
<a 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</a>
</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 -->
<!--Biography Section-->
<section class="container-fluid g-0" id="bio-section">
<div class="row g-0">
<!--Column containing the Bio-->
<div class="col-12 biography-text">
<!--Profile Picture (floated left)-->
<img class="profile-picture" src="assets/images/profile-picture.jpg"
alt="Picture of Nick Lennon holding some drumsticks">
<!--Bio Title and Text-->
<h2><i class="ph-book-bold about-me-icon" aria-hidden="true"></i> Biography</h2>
<p>London based British musician, Nick Lennon, has been bringing his passion for drumming, performance
and entertainment to stage for over 10 years. His technical abilities are the culmination of drum
lessons from the age of 8, achieving a degree in Contemporary Music Performance and private study
with many prestigious tutors including Ed Spevock and Pete Riley.
</p>
<p>Nick is a very adaptable player who has a broad spectrum of percussive skills including tuned,
auxiliary and electronic percussion.
</p>
<p>With his infectious stage presence, interminable energy and drumming prowess, every performance of
Nick's is a joy to watch and listen to.
</p>
<p>As a drum kit tutor, Nick encourages and pushes his students to reach their full drumming potential,
through individually designed learning plans, drawing on his experience working in the music
industry to make the lessons relevant.
</p>
<!--CV Download Text and Link-->
<p class="cv-download">Are you a recruiter? Want to download a basic version of Nick's CV? <a
href="assets/pdf/nick-lennon-website-cv.pdf" rel="noopener" target="_blank" aria-label="Click here to download my CV">Click here! <i
class="fas fa-file-download" aria-hidden="true"></i></a>
</p>
</div>
</div>
</section>
<!--/Biography Section-->
<!-- Career Hightlights Section-->
<section class="container-fluid g-0" id="career-highlights-section">
<div class="row g-0">
<!--Container for Studio Credits and Career Highlights Section-->
<div class="col-12 col-lg-6 timeline-container">
<!--Timeline coloured background-->
<div class="timeline-background">
<h2><i class="ph-briefcase-bold about-me-icon d-none d-sm-inline" aria-hidden="true"></i>Career Highlights<i
class="ph-briefcase-bold about-me-icon d-none d-sm-inline" aria-hidden="true"></i></h2>
<!--1st Timeline Item-->
<div class="timeline-item">
<!--Timeline Item Bullet Point on the Timeline-->
<div class="timeline-item-point">
<i class="far fa-dot-circle" aria-hidden="true"></i>
<!--Timeline Rectangle containing all text-->
<div class="timeline-item-text">
<!--Timeline item text-->
<p class="timeline-date">2016- 2020</p>
<h4>Performed on Cruise Ships</h4>
<p>Nick spent 5 years performing on cruise ships all over the world in many roles from
drummer in the jazz band, and Royal Court Theatre Drummer to Musical Director.
During this time, travelling the world and visiting over 50 countries, Nick worked
for Cunard, P&O Australia, P&O UK and SAGA Cruises Ltd and has worked on over 6
different ships.
</p>
</div>
</div>
</div>
<!--2nd Timeline Item-->
<div class="timeline-item">
<!--Timeline Item Bullet Point on the Timeline-->
<div class="timeline-item-point">
<i class="far fa-dot-circle" aria-hidden="true"></i>
<!--Timeline Rectangle containing all text-->
<div class="timeline-item-text">
<!--Timeline item text-->
<p class="timeline-date">2014</p>
<h4>Graduated from University</h4>
<p>Nick graduated from The Academy of Contemporary Music in late 2014 after completing a
Higher Diploma and Degree in Contemporary Music Performance.
</p>
</div>
</div>
</div>
<!--3rd Timeline Item-->
<div class="timeline-item">
<!--Timeline Item Bullet Point on the Timeline-->
<div class="timeline-item-point">
<i class="far fa-dot-circle" aria-hidden="true"></i>
<!--Timeline Rectangle containing all text-->
<div class="timeline-item-text">
<!--Timeline item text-->
<p class="timeline-date">2012</p>
<h4>London 2012 Olympic Ceremonies</h4>
<p>Nick was lucky enough to work as part of the team involved in putting together a
section of the London 2012 Olympic Opening Ceremony. As part of this performance, he
joined 1000 other drummers in the Pandemonium section, which was directed by Danny
Boyle.
Throughout the rehearsals, which lasted for several months, and performances Nick
bumped into many famous faces in an experience he would never forget.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- /Career Hightlights Section-->
<!-- Studio Credits Section-->
<div class="col-12 col-lg-6 studio-credits-container" id="studio-credits-section">
<!-- Studio Credits Title-->
<h2><i class="ph-microphone-bold about-me-icon d-none d-sm-inline" aria-hidden="true"></i>Studio Credits<i
class="ph-microphone-bold about-me-icon d-none d-sm-inline" aria-hidden="true"></i></h2>
<div class="col">
<!-- Album Cover Container-->
<div class="album-cover">
<!-- Album Link with Image-->
<a href="https://www.spotify.co.uk/" rel="noopener" target="_blank"
aria-label="Go to Penguine Crusade debute album to listen">
<img src="assets/images/album-covers/album-1.jpg" alt="Penguin Crusade debut album cover"
id="penguin-album-cover">
<!-- Album Cover Label (with Drop Down animation at Desktop and specific text spacing)-->
<p class="hvr-bounce-to-bottom two-line">Penguin Crusade</p>
</a>
</div>
<!-- Album Cover Container-->
<div class="album-cover">
<!-- Album Link with Image-->
<a href="https://www.spotify.co.uk/" rel="noopener" target="_blank"
aria-label="Go to Maddening Serenity album to listen">
<img src="assets/images/album-covers/album-2.jpg" alt="Maddening Serenity album cover">
<!-- Album Cover Label (with Drop Down animation at Desktop and specific text spacing)-->
<p class="hvr-bounce-to-bottom two-line">Maddening Serenity</p>
</a>
</div>
<!-- Album Cover Container-->
<div class="album-cover">
<!-- Album Link with Image-->
<a href="https://www.spotify.co.uk/" rel="noopener" target="_blank" aria-label="Go to MVP album to listen">
<img src="assets/images/album-covers/album-3.jpg" alt="MVP album cover">
<!-- Album Cover Label (with Drop Down animation at Desktop and specific text spacing)-->
<p class="hvr-bounce-to-bottom one-line">MVP</p>
</a>
</div>
<!-- Album Cover Container-->
<div class="album-cover">
<!-- Album Link with Image-->
<a href="https://www.spotify.co.uk/" rel="noopener" target="_blank"
aria-label="Go to Live It Up album to listen">
<img src="assets/images/album-covers/album-4.jpg" alt="Live It Up album cover">
<!-- Album Cover Label (with Drop Down animation at Desktop and specific text spacing)-->
<p class="hvr-bounce-to-bottom one-line">Live It Up</p>
</a>
</div>
<!-- Album Cover Container-->
<div class="album-cover">
<!-- Album Link with Image-->
<a href="https://www.spotify.co.uk/" rel="noopener" target="_blank"
aria-label="Go to Cab of Fools album to listen">
<img src="assets/images/album-covers/album-5.jpg" alt="Cab of Fools album cover">
<!-- Album Cover Label (with Drop Down animation at Desktop and specific text spacing)-->
<p class="hvr-bounce-to-bottom one-line">Cab of Fools</p>
</a>
</div>
<!-- Album Cover Container-->
<div class="album-cover">
<!-- Album Link with Image-->
<a href="https://www.spotify.co.uk/" rel="noopener" target="_blank"
aria-label="Go to At Dusk We Fall album to listen">
<img src="assets/images/album-covers/album-6.jpg" alt="At Dusk We Fall album cover">
<!-- Album Cover Label (with Drop Down animation at Desktop and specific text spacing)-->
<p class="hvr-bounce-to-bottom two-line">At Dusk We Fall</p>
</a>
</div>
<div class="row g-0">
<div class="col-12">
<!--Soundcloud Iframe (after album covers)-->
<div class="soundcloud-links">
<iframe class="soundcloud-link"
src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1014860209&color=%238494a4&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true"></iframe>
<div class="soundcloud-iframe"></div>
<iframe class="soundcloud-link"
src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1014860203&color=%238494a4&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true"></iframe>
<div class="soundcloud-iframe"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/Studio Credits 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>