-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
586 lines (578 loc) · 21.8 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
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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
<!DOCTYPE html>
<html lang="en-ZA">
<head>
<!-- META TAGS -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- TITLE -->
<title>Brent Lee's Portfolio</title>
<!-- 3rd Party Stylesheets -->
<link
rel="stylesheet"
href="./scripts/OwlCarousel2-2.3.4/dist/assets/owl.carousel.css"
/>
<link
rel="stylesheet"
href="./scripts/OwlCarousel2-2.3.4/dist/assets/owl.theme.default.css"
/>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<script src="https://code.iconify.design/1/1.0.7/iconify.min.js"></script>
<!-- FONT AWESOME -->
<script
src="https://kit.fontawesome.com/2822e841b6.js"
crossorigin="anonymous"
></script>
<!-- OTHER EXTERNAL ICONS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/devicons/[email protected]/devicon.min.css"
/>
<!-- PERSONAL STYLESHEETS -->
<link rel="stylesheet" href="./styles/styles.css" />
<link rel="stylesheet" href="./styles/about.css" />
<link rel="stylesheet" href="./styles/resume.css" />
<link rel="stylesheet" href="./styles/projects.css" />
<link rel="stylesheet" href="./styles/styles/testimonials.css" />
<link rel="stylesheet" href="./styles/contact.css" />
</head>
<body>
<!-- CONTAINER -->
<div class="container">
<!-- NAVBAR CONTAINER -->
<div class="nav-container">
<!-- NAVBAR -->
<nav id="navbar">
<ul style="list-style-type: none">
<li>
<button class="navbar-blocks" onclick="showTab('about')">
<i class="fas fa-user"></i>
<br /><span>About</span>
</button>
</li>
<li>
<button class="navbar-blocks" onclick="showTab('resume')">
<i class="fas fa-list-alt"></i>
<br /><span>Resume</span>
</button>
</li>
<li>
<button class="navbar-blocks" onclick="showTab('projects')">
<i class="fas fa-paint-brush"></i>
<br /><span>Projects</span>
</button>
</li>
<li>
<button class="navbar-blocks" onclick="showTab('testimonials')">
<i class="fas fa-comment-dots"></i>
<br /><span>Testimonials</span>
</button>
</li>
<li>
<button class="navbar-blocks" onclick="showTab('contact')">
<i class="fas fa-at"></i>
<br /><span>Contact</span>
</button>
</li>
</ul>
</nav>
</div>
<!-- LANDING PAGE -->
<section class="landing">
<img src="./images/Brent Lee Johnson (3)-min.JPG" alt="Self Portrait" />
<div class="landing-details">
<div>
<h1>Brent Lee Johnson</h1>
<h4 data-aos="fade-up" data-aos-duration="3000">
Aspiring Frontend Developer
</h4>
</div>
<div class="landing-icons">
<a
href="https://github.com/brentleejohnson"
class="landing-icon"
target="_blank"
><i class="fab fa-github"></i
></a>
<a
href="https://www.linkedin.com/in/brent-lee-johnson-4b7450208/?msgControlName=reply_to_sender&msgConversationId=2-NjZlODgwYTUtY2ZjNi00N2M3LTg4YTAtMDI1ZmQwOTA2MDBjXzAxMw%3D%3D&msgOverlay=true"
class="landing-icon"
target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
<a
href="https://codepen.io/brentleejohnson"
class="landing-icon"
target="_blank"
><i class="fab fa-codepen"></i
></a>
</div>
</div>
<footer>Made By Brent Lee Johnson</footer>
</section>
<!-- SECTION -->
<div class="tab-container">
<!-- ABOUT ME -->
<section id="about" class="content active">
<h1><span class="pur-text">About</span> Me</h1>
<!-- DETAILS -->
<div class="about-details">
<div class="intro">
<h3>Hello! I'm Brent Johnson</h3>
<!-- An enthusiastic web developer from South Africa. I have beginner
experience in website design & building and am always up for
broadening my capabilities. -->
Enthusiastic gamer, jazz musician, and passionate aspiring
frontend developer.</br></br>
I am currently in the process of upskilling myself and improving my skills.
Because of how much fun I find in learning new things, it will
often lead me to coding fun ideas on CodePen. This is one of the
activities I do in my spare time as it improves my
understanding. And it also gives me a chance to be as creative
with my code as I am on the piano.</br></br>
I have a soft spoken
character generally, but as a team player I am able to fill my
role firmly. I am very much capable of independently doing my
work and managing my time. I as well enjoy helping my colleagues
with any of the problems they face to the best of my ability,
and I am never shy to ask for help myself.
</p>
</div>
<!-- DEMOGRAPHICS -->
<div class="demographics">
<div class="demo-details">
<ul>
<li>Age</li>
<li>Residence</li>
<li>Occupation</li>
<li>Address</li>
</ul>
</div>
<div class="demo-answ">
<ul>
<li id="myAge"></li>
<li>South Africa</li>
<li>Unemployed</li>
<li>Cape Town</li>
</ul>
</div>
</div>
</div>
<!-- PASSION & HOBBIES -->
<div>
<h1>
<span class="pur-text">Pass</span>ion &
<span class="pur-text">Hobb</span>ies
</h1>
<div class="pass-hobb">
<div class="pass-hobb-card">
<div class="pass-hobb-icon"><i class="fas fa-code"></i></div>
<h3>Web Development</h3>
<p>
Intermediate knowledge with flexibile creativity daring enough
for challenges
</p>
</div>
<div class="pass-hobb-card">
<div class="pass-hobb-icon"><i class="fas fa-music"></i></div>
<h3>Jazz Piano</h3>
<p>
Grade 5 knowledge of music theory and 5 years experience of
jazz piano
</p>
</div>
<div class="pass-hobb-card">
<div class="pass-hobb-icon"><i class="fas fa-gamepad"></i></div>
<h3>Gaming</h3>
<p>
Grew up within the gaming industry, soon will be making them
</p>
</div>
</div>
</div>
</section>
<!-- RESUME -->
<section id="resume" class="content">
<h1><span class="pur-text">Res</span>ume</h1>
<div class="resume-details">
<!-- EDUCATION -->
<div class="edu">
<div class="resume-heading">
<i class="fas fa-graduation-cap"></i>
<h1>Education</h1>
</div>
<div class="edu-cards">
<span>2021</span>
<h3>Life Choices</h3>
<h4>Lansdowne, Cape Town</h4>
<p>
6 month course that focused on the basic Full-Stack programming languages. In addition, personal and professional development.
</p>
</div>
<div class="edu-cards">
<span>2016 - 2020</span>
<h3>South Peninsula</h3>
<h4>Diep River, Cape Town</h4>
<p>
Matriculated at South Peninsula High School during the
pandemic of Covid19
</p>
</div>
</div>
<!-- EXPERIENCE -->
<div class="exp">
<div class="resume-heading">
<i class="fas fa-briefcase"></i>
<h1>Experience</h1>
</div>
<div class="exp-cards-main">
<span>2022</span>
<h3>Gmaven</h3>
<h4>Blairgowrie, Johannesburg</h4>
<p>
Assisted as an intern in improving Gmaven's vacancy feed and other processes, as well as resolving issues on data quality.
</p>
</div>
<div class="exp-cards">
<span>2021 - 2022</span>
<h3>LC Studio</h3>
<h4>Lansdowne, Cape Town</h4>
<p>
Working as a Full-Stack Developer. Frameworks that I am learning on the way includes Node.js, Vue.js, PostgreSQL, and several others.
</p>
</div>
<div class="exp-cards">
<span>2019</span>
<h3>NexusNet</h3>
<h4>Wynberg, Cape Town</h4>
<p>
Worked part-time at NexusNet as a technician installing
wireless and internet cables to both companies and private homes.
</p>
</div>
</div>
<!-- SKILLS -->
<div class="skills">
<h1><span class="pur-text">Cod</span>ing</h1>
<!-- Coding Icon Container -->
<div class="coding-icons">
<!-- Coding Icons -->
<!-- HTML -->
<div class="coding-icon-container">
<div class="coding-icon">
<i class="fab fa-html5"></i>
</div>
<h1 class="coding-icon-des">HTML</h1>
</div>
<!-- CSS -->
<div class="coding-icon-container">
<div class="coding-icon">
<i class="fab fa-css3-alt"></i>
</div>
<h1 class="coding-icon-des">CSS</h1>
</div>
<!-- PYTHON -->
<div class="coding-icon-container">
<div class="coding-icon">
<i class="fab fa-python"></i>
</div>
<h1 class="coding-icon-des">PYTHON</h1>
</div>
<!-- JAVASCRIPT -->
<div class="coding-icon-container">
<div class="coding-icon">
<i class="fab fa-js"></i>
</div>
<h1 class="coding-icon-des">JAVASCRIPT</h1>
</div>
<!-- MYSQL -->
<div class="coding-icon-container">
<div class="coding-icon">
<i class="devicon-mysql-plain"></i>
</div>
<h1 class="coding-icon-des">MySQL</h1>
</div>
<!-- FLASK -->
<div class="coding-icon-container">
<div class="coding-icon">
<i class="devicon-flask-original"></i>
</div>
<h1 class="coding-icon-des">Flask</h1>
</div>
</div>
</div>
</div>
</section>
<!-- PROJECTS -->
<section id="projects" class="content">
<h1><span class="pur-text">Proj</span>ects</h1>
<!-- FILTER BUTTONS -->
<div class="filter-buttons">
<button class="active-buttons active" onclick="filterCards('All')">
All
</button>
<button class="active-buttons" onclick="filterCards('HTML/CSS')">
HTLM/CSS
</button>
<button class="active-buttons" onclick="filterCards('Python')">
Python
</button>
<button class="active-buttons" onclick="filterCards('JavaScript')">
JavaScript
</button>
</div>
<div class="proj-details"></div>
</section>
<!-- TESTIMONIALS -->
<section id="testimonials" class="content">
<h1
style="
font-size: 120%;
padding-bottom: 3vh;
border-bottom: 1px lightgrey solid;
color: rgb(58, 58, 58);
"
>
<span class="pur-text">Testi</span>monials
</h1>
<!-- OWL CAROUSEL -->
<div class="owl-carousel owl-theme" style="margin-top: 30px">
<!-- JASON WANDRAG -->
<div
style="
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
"
>
<img
src="./images/jason-wandrag-min.jpg"
alt="Picture of Jason Wandrag"
style="max-width: 90%; border-radius: 10%; margin-bottom: 3%"
/>
<h1 style="margin-bottom: 1%">
<span style="color: #906ba5">J</span>ason
<span style="color: #906ba5">W</span>andrag
</h1>
<h3 style="margin-bottom: 3%; font-weight: normal">
<span style="color: #906ba5">F</span>rontend
<span style="color: #906ba5">L</span>ecturer
</h3>
<i style="text-align: center; color: rgb(58, 58, 58)"
>Brent-Lee is both a natural leader and developer. He learns
very quickly, and is constantly striving for perfection. His
keen eye for detail and ability to assist peers make for a great
team lead.</i
>
</div>
<!-- GODWIN DZVAPASTSVA -->
<div
style="
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
"
>
<img
src="./images/godwin-dzvapatsra-min.jpg"
alt="Picture of Godwin Dzvapastsva"
style="max-width: 90%; border-radius: 10%; margin-bottom: 3%"
/>
<h1 style="margin-bottom: 1%">
<span style="color: #906ba5">G</span>odwin
<span style="color: #906ba5">D</span>zvapastsva
</h1>
<h3 style="margin-bottom: 3%; font-weight: normal">
<span style="color: #906ba5">H</span>ead of
<span style="color: #906ba5">C</span>urriculum
</h3>
<i style="text-align: center; color: rgb(58, 58, 58)"
>I have often said that if I could clone Brent-lee, I’d never
have to worry about student discipline issues at all. He is very
humble, soft spoken and does his work on time. Godwin- Head of
Curriculum and Learning</i
>
</div>
<!-- ZOE ERISPE -->
<div
style="
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
"
>
<img
src="./images/Zoe Erispe (2)-min.JPG"
alt="Picture of Zoe Erispe"
style="max-width: 90%; border-radius: 10%; margin-bottom: 3%"
/>
<h1 style="margin-bottom: 1%">
<span style="color: #906ba5">Z</span>oe
<span style="color: #906ba5">E</span>rispe
</h1>
<h3 style="margin-bottom: 3%; font-weight: normal">
<span style="color: #906ba5">F</span>rontend
<span style="color: #906ba5">D</span>eveloper
</h3>
<i style="text-align: center; color: rgb(58, 58, 58)"
>Brent Johnson has a great work ethic and always completes a
task with excellence. I believe he will be an asset to any
company that decides to hire him.</i
>
</div>
<!-- RONALD TERBLANCHE -->
<div
style="
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
"
>
<img
src="./images/Ronald Terblanche (2)-min.JPG"
alt="Picture of Ronald Terblanche"
style="max-width: 90%; border-radius: 10%; margin-bottom: 3%"
/>
<h1 style="margin-bottom: 1%">
<span style="color: #906ba5">R</span>onald
<span style="color: #906ba5">T</span>erblanche
</h1>
<h3 style="margin-bottom: 3%; font-weight: normal">
<span style="color: #906ba5">F</span>reelance
<span style="color: #906ba5">F</span>rontend
<span style="color: #906ba5">D</span>eveloper
</h3>
<i style="text-align: center; color: rgb(58, 58, 58)"
>Brent has shown a passion for this field by the fact that he
continues to learn even when classes have ended. He’s potential
shines through, as he can adopt new concepts at an exceptional
pace. He will definitely become an amazing full-stack
developer</i
>
</div>
<!-- DEVIN FLEDERMAUS -->
<div
style="
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
"
>
<img
src="./images/Devin Fledermaus (1)-min.JPG"
alt="Picture of Devin Fledermaus"
style="max-width: 90%; border-radius: 10%; margin-bottom: 3%"
/>
<h1 style="margin-bottom: 1%">
<span style="color: #906ba5">D</span>evin
<span style="color: #906ba5">F</span>ledermaus
</h1>
<h3 style="margin-bottom: 3%; font-weight: normal">
<span style="color: #906ba5">F</span>ullstack
<span style="color: #906ba5">D</span>eveloper
</h3>
<i style="text-align: center; color: rgb(58, 58, 58)"
>Brent is an individual with a tremendous amount of potential,
constantly eager to learn new skills and applying them. Quick to
help other's when asked to and diligent in his own work. Clearly
ahead of the curve and an asset to any company he's within.</i
>
</div>
</div>
</section>
<!-- CONTACT ME -->
<section id="contact" class="content">
<h1><span class="pur-text">Cont</span>act Me</h1>
<!-- FORM -->
<form
action="https://formspree.io/f/mqkwpqbb"
method="POST"
id="contact-form"
>
<!-- NAME -->
<div class="contact-info">
<label for="name" class="contact-label">Name</label>
<input
type="text"
name="name"
id="name"
class="contact-input"
required
placeholder="Full Name"
/>
</div>
<!-- EMAIL -->
<div class="contact-info">
<label for="email" class="contact-label">Email</label>
<input
type="email"
name="email"
id="email"
class="contact-input"
required
placeholder="[email protected]"
/>
</div>
<!-- NUMBER -->
<div class="contact-info">
<label for="number" class="contact-label">Number</label>
<input
type="tel"
name="number"
id="number"
class="contact-input"
required
placeholder="072 123 4567"
/>
</div>
<!-- MESSAGE -->
<div class="contact-info">
<label for="message" class="contact-label" id="message-label"
>Your Message</label
>
<input
type="text"
name="message"
id="message"
class="contact-input"
placeholder="Your Message Here"
/>
</div>
<!-- BUTTON -->
<div>
<button type="submit" class="contact-button">Send</button>
</div>
</form>
</section>
</div>
</div>
<!-- EXTERNAL SCRIPTS -->
<script
src="https://code.jquery.com/jquery-3.6.0.slim.min.js"
integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI="
crossorigin="anonymous"
></script>
<script src="./scripts/OwlCarousel2-2.3.4/dist/owl.carousel.js"></script>
<script>
$(".owl-carousel").owlCarousel({
loop: true,
margin: 50,
autoplay: false,
items: 1,
autoplayTimeout: 10000,
});
</script>
<!-- AOS -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!-- INITIALIZE AOS -->
<script>
AOS.init();
</script>
<!-- PERSONAL JS -->
<script src="./scripts/index.js"></script>
</body>
</html>