This repository was archived by the owner on Feb 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1773 lines (1705 loc) · 65.6 KB
/
Copy pathindex.html
File metadata and controls
1773 lines (1705 loc) · 65.6 KB
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
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Data Start -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta
name="description"
content="Llewellyn Paintsil's Portfolio showing all his projects, achievements, and skills for when you want to hire him."
/>
<meta
name="keywords"
content="Llewellyn, Adonteng, Paintsil, Portfolio, projects, about me, hire me, contact, cool, neumorphism, programmer, graphic designer"
/>
<meta name="author" content="Llewellyn Adonteng Paintsil" />
<title>Llewellyn Paintsil's Portfolio</title>
<link rel="canonical" href="https://llewellyn500.github.io/portfolio/" />
<!-- Google Ownership Verification -->
<meta
name="google-site-verification"
content="wyLz6mXZkNSDktEXOT65OnEr8iQEja3QdihC_278IuE"
/>
<!-- Pinterest Verification -->
<meta name="p:domain_verify" content="90bf6e8b0680e2b233fbd63937ab8a87" />
<!-- Social Media og -->
<meta property="og:site_name" content="Llewellyn Paintsil's Portfolio" />
<meta property="og:title" content="Llewellyn Paintsil's Portfolio" />
<meta
property="og:description"
content="Llewellyn Paintsil's Portfolio showing all his projects, achievements, and skills for when you want to hire him."
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/Llewellyn500/portfolio/main/img/open-graph-image.jpg"
/>
<meta property="og:type" content="website" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<meta
property="og:url"
content="https://llewellyn500.github.io/portfolio/"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Llewellyn Paintsil's Portfolio" />
<meta
name="twitter:description"
content="Llewellyn Paintsil's Portfolio showing all his projects, achievements, and skills for when you want to hire him."
/>
<meta
name="twitter:url"
content="https://llewellyn500.github.io/portfolio/"
/>
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/Llewellyn500/portfolio/main/img/open-graph-image.jpg"
/>
<!-- Android -->
<meta name="theme-color" content="#317EFB" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- iOS -->
<meta name="apple-mobile-web-app-title" content="Llewellyn's Portfolio" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<!-- Tap highlight -->
<meta name="msapplication-tap-highlight" content="no" />
<!-- Orientation -->
<meta name="screen-orientation" content="portrait-primary" />
<!-- manifest.json -->
<link rel="manifest" href="./manifest.json" />
<!-- ico -->
<link rel="shortcut icon" href="./img/favicon.ico" />
<!-- Main link Tags -->
<link rel="stylesheet" type="text/css" href="css/font-awesome.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/responsive.css" />
<link rel="stylesheet" type="text/css" href="css/skins/color-1.css" />
<link rel="stylesheet" type="text/css" href="css/style-switcher.css" />
<!-- Color Schemes -->
<link
rel="stylesheet"
type="text/css"
class="alternate-style"
title="color-1"
href="css/skins/color-1.css"
/>
<link
rel="stylesheet"
type="text/css"
class="alternate-style"
title="color-2"
href="css/skins/color-2.css"
disabled
/>
<link
rel="stylesheet"
type="text/css"
class="alternate-style"
title="color-3"
href="css/skins/color-3.css"
disabled
/>
<link
rel="stylesheet"
type="text/css"
class="alternate-style"
title="color-4"
href="css/skins/color-4.css"
disabled
/>
<link
rel="stylesheet"
type="text/css"
class="alternate-style"
title="color-5"
href="css/skins/color-5.css"
disabled
/>
<!-- iOS -->
<link rel="apple-touch-icon" href="./img/ios-logo.png" />
<link
rel="apple-touch-icon"
sizes="76x76"
href="./img/icons/ios/ios-icon76.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="./img/icons/ios/ios-icon120.png"
/>
<link
rel="apple-touch-icon"
sizes="152x152"
href="./img/icons/ios/ios-icon152.png"
/>
<link
rel="apple-touch-icon"
sizes="167x167"
href="./img/icons/ios/ios-icon167.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./img/icons/ios/ios-icon180.png"
/>
<!-- Startup Image -->
<link
rel="apple-touch-startup-image"
sizes="640x1136"
href="./img/launch-screens/apple-launch-640.png"
/>
<link
rel="apple-touch-startup-image"
sizes="750x1334"
href="./img/launch-screens/apple-launch-750.png"
/>
<link
rel="apple-touch-startup-image"
sizes="1125x2436"
href="./img/launch-screens/apple-launch-1125.png"
/>
<link
rel="apple-touch-startup-image"
sizes="1242x2208"
href="./img/launch-screens/apple-launch-1242.png"
/>
<link
rel="apple-touch-startup-image"
sizes="1536x2048"
href="./img/launch-screens/apple-launch-1536.png"
/>
<link
rel="apple-touch-startup-image"
sizes="1668x2224"
href="./img/launch-screens/apple-launch-1668.png"
/>
<link
rel="apple-touch-startup-image"
sizes="2048x2732"
href="./img/launch-screens/apple-launch-2048.png"
/>
<!-- Android -->
<link rel="icon" type="image/png" href="./img/logo.png" />
<!-- UC Browser -->
<link
rel="apple-touch-icon-precomposed"
sizes="57x57"
href="./img/icons/ios/ios-icon57.png"
/>
<!-- reCAPTCHA -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body class="dark">
<!-- preloader start -->
<div class="preloader">
<div class="box">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- preloader end -->
<!-- header starts-->
<header class="header">
<div class="container">
<div class="row justify-content-between">
<div class="logo">
<a href="./index.html">LP</a>
</div>
<div class="hamburger-btn outer-shadow hover-in-shadow">
<span></span>
</div>
</div>
</div>
</header>
<!-- header end-->
<!-- navigation menu start -->
<nav class="nav-menu">
<div class="close-nav-menu outer-shadow hover-in-shadow">×</div>
<div class="nav-menu-inner">
<ul>
<li>
<a href="./index.html" class="link-item inner-shadow active"
>home</a
>
</li>
<li>
<a href="#about" class="link-item outer-shadow hover-in-shadow"
>about</a
>
</li>
<li>
<a href="#services" class="link-item outer-shadow hover-in-shadow"
>services</a
>
</li>
<li>
<a href="#projects" class="link-item outer-shadow hover-in-shadow"
>projects</a
>
</li>
<li>
<a
href="#testimonial"
class="link-item outer-shadow hover-in-shadow"
>testimonial</a
>
</li>
<li>
<a href="#contact" class="link-item outer-shadow hover-in-shadow"
>contact</a
>
</li>
</ul>
</div>
<!-- copyright text -->
<p class="copyright-text">© 2021 Llewellyn Paintsil</p>
</nav>
<div class="fade-out-effect"></div>
<!-- navigation menu end -->
<!-- home section start -->
<section class="home-section section active" id="home">
<!-- effect wrap start -->
<div class="effect-wrap">
<div class="effect effect-1"></div>
<div class="effect effect-2">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="effect effect-3"></div>
<div class="effect effect-4"></div>
<div class="effect effect-5">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- effect wrap end -->
<div class="container">
<div class="row full-screen align-items-center">
<div class="home-text">
<p>Hello</p>
<h2>I'm Llewellyn Paintsil</h2>
<h1>Developer & Digital Creator</h1>
<a
href="#about"
class="link-item btn-1 outer-shadow hover-in-shadow"
>
More About Me</a
>
</div>
<div class="home-img">
<div class="img-box inner-shadow">
<img
src="img/llewellyn-paintsil.png"
class="outer-shadow"
alt="profile-pic"
loading="lazy"
/>
</div>
</div>
</div>
</div>
</section>
<!-- home section end -->
<!-- about section start -->
<section class="about-section section" id="about">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="main info">About me</h2>
</div>
</div>
<div class="row">
<div class="about-img">
<div class="img-box inner-shadow">
<img
src="img/llewellyn-paintsil.png"
alt="llewellyn paintsil"
class="outer-shadow"
loading="lazy"
/>
</div>
<!-- social links start -->
<div class="social-links">
<a
href="http://www.youtube.com/c/LPTeach"
class="outer-shadow hover-in-shadow"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-youtube"></i
></a>
<a
href="https://www.linkedin.com/in/llewellynpaintsil/"
class="outer-shadow hover-in-shadow"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-linkedin-in"></i
></a>
<a
href="https://www.instagram.com/llewellynpaintsil/"
class="outer-shadow hover-in-shadow"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-instagram"></i
></a>
<a
href="https://twitter.com/LlewellynAdont1"
class="outer-shadow hover-in-shadow"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-twitter"></i
></a>
<a
href="https://www.facebook.com/llewellyn.paintsil.75/"
class="outer-shadow hover-in-shadow"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-facebook"></i
></a>
<a
href="https://www.youtube.com/channel/UCcXLspJdUMq5E8-jU0CXuNA"
class="outer-shadow hover-in-shadow"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-youtube"></i
></a>
</div>
<!-- social links end -->
</div>
<div class="about-info">
<p>
<span
>Hi👋! I'm Llewellyn Adonteng Paintsil i'm a Christian⛪,
Developer👨🏾💻, Digital Creator🎥, Ghanaian⭐, student🎓, and a
Gamer🎮,</span
>
I guess you can say I’m a lot of things😅, but the one thing I’m
proud of being is a son to
<i
><a
href="https://www.facebook.com/albert.paintsil"
target="_blank"
rel="noopener noreferrer"
>Mr. Albert Paintsil (Architect)</a
></i
>
and
<i
><a
href="https://www.facebook.com/vivian.paintsil"
target="_blank"
rel="noopener noreferrer"
>Dr. Vivian Paintsil (Pediatrician)</a
></i
>, a brother to
<i
><a
href="https://samuelpaintsil-beta.netlify.app/"
target="_blank"
rel="noopener noreferrer"
>Mr. Samuel Kow Paintsil</a
></i
>
(co-founder of
<a
href="https://cubegh.com/"
target="_blank"
rel="noopener noreferrer"
>Cube Robotics GH</a
>), and a past student of the noble institution KNUST SHS. I'm
currently studying Computer Science at KNUST.
</p>
<p>
<a
href="https://www.azquotes.com/quote/565417"
target="_blank"
rel="noopener noreferrer"
>"You have to set goals that are almost out of reach. If you set
a goal that is attainable without much work or thought, you are
stuck with something below your true talent and potential". —
Steve Garvey.</a
>
I always thought this world was easy to live in till the corona
pandemic, that’s when I got exposed to the world of technology,
specifically software development. I made up my mind to dive
deeper into this topic, but I had one roadblock, all I had was a
phone. Can you imagine, coding on a phone? It wasn’t easy but I
found ways around all the limitations of the mobile device and got
to where I am now.
</p>
<p>
It was after this that I made up my mind to become a developer who
can help my country and others who find themselves in the same
situation I was in. I know it wont be easy, but with God's help i
know i can make it.
</p>
<!-- <a href="#" class="btn-1 outer-shadow hover-in-shadow"
>Download CV</a
>-->
<a
href="#projects"
class="link-item btn-1 outer-shadow hover-in-shadow"
>My Works</a
>
<a
href="#contact"
class="link-item btn-1 outer-shadow hover-in-shadow"
>Hire Me</a
>
<a
href="https://llewellynpaintsil-gallery.netlify.app/"
class="link-item btn-1 outer-shadow hover-in-shadow"
target="_blank"
>My Gallery
</a>
</div>
</div>
<!-- about tabs start -->
<div class="row">
<div class="about-tabs">
<span class="tab-item outer-shadow active" data-target=".skills"
>skills</span
>
<span class="tab-item" data-target=".experience">experience</span>
<span class="tab-item" data-target=".education">education</span>
</div>
</div>
<!-- about tabs end -->
<!-- skills start -->
<div class="row">
<div class="skills tab-content active">
<div class="row">
<!-- skill item start -->
<div class="skill-item">
<p>HTML</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(80% - 14px)">
<span>80%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>css</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(70% - 14px)">
<span>70%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>JavaScript</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(50% - 14px)">
<span>50%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>React</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(30% - 14px)">
<span>30%</span>
</div>
</div>
</div>
<!-- skill item end -->
</div>
</div>
</div>
<!-- skills end -->
<!-- experience start -->
<div class="row">
<div class="experience tab-content">
<div class="row">
<div class="timeline">
<div class="row">
<div class="section-title">
<h2>No current experience</h2>
</div>
<!-- timeline item start
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-briefcase icon"></i>
<span>Jan, 2021 - Present</span>
<h3>full stack Developer</h3>
<h4>company name, country</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua. Ut enim ad minim veniam
</p>
</div>
</div>
<!-- timeline item end -->
<!-- timeline item start
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-briefcase icon"></i>
<span>Oct, 2020 - Jan, 2021</span>
<h3>Web Developer</h3>
<h4>company name, country</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua. Ut enim ad minim veniam
</p>
</div>
</div>
<!-- timeline item end -->
<!-- timeline item start
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-briefcase icon"></i>
<span>Mar, 2003 - Jan, 2019</span>
<h3>Baby</h3>
<h4>company name, country</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua. Ut enim ad minim veniam
</p>
</div>
</div>
<!-- timeline item end -->
</div>
</div>
</div>
</div>
</div>
<!-- experience end -->
<!-- education start -->
<div class="row">
<div class="education tab-content">
<div class="row">
<div class="timeline">
<div class="row">
<!-- timeline item start -->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-graduation-cap icon"></i>
<span>2022 - Date</span>
<h3>Computer Science (University)</h3>
<p>
Finally made it in after going through hell in shs. Now i'm studying the course of my choosing and passion. I know i will also excel in this stage of life and become some great person in the future.
</p>
</div>
</div>
<!-- timeline item end -->
<!-- timeline item start -->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-graduation-cap icon"></i>
<span>2018 - 2021</span>
<h3>General Science (SHS)</h3>
<p>
So far this is one of the toughest time of my life,
having to go to the boarding house struggling to survive
without any technology. But in all, this is where my
programming career begun😎.
</p>
</div>
</div>
<!-- timeline item end -->
<!-- timeline item start -->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-graduation-cap icon"></i>
<span>2007 - 2018</span>
<h3>Basic education</h3>
<p>
I went to two different schools for my kindergarten
time. After that I went to St.Louis Jubilee, a school at
Oduom in Ghana. I didn't do much those years but wasted
my time lazying around.
</p>
</div>
</div>
<!-- timeline item end -->
<!-- timeline item start -->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-graduation-cap icon"></i>
<span>2003 - 2007</span>
<h3>Birth and Development</h3>
<p>
This was the golden and the most enjoyable days of my
life. The days I didn't have to worry about anything and
just eat, sleep, play, poop and learn to speak and walk.
</p>
</div>
</div>
<!-- timeline item end -->
</div>
</div>
</div>
</div>
</div>
<!-- education end -->
</div>
</section>
<!-- about section end -->
<!-- services section start -->
<section class="service-section section" id="services">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="Services">What i do</h2>
</div>
</div>
<div class="row">
<!-- service item start -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-palette"></i>
</div>
<h3>Graphic design</h3>
<p>Clean, Beautiful designs using Photoshop and illustrator.</p>
</div>
</div>
<!-- service item end -->
<!-- service item start -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-laptop-code"></i>
</div>
<h3>Web design</h3>
<p>
Fully functional Neat Websites and Web apps. Both Front-End and
Back-End
</p>
</div>
</div>
<!-- service item end -->
<!-- service item start -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-book-open"></i>
</div>
<h3>Education</h3>
<p>
Knowledge is power. Thats my motto. I believe everybody should
learn more about technology so i teach mainly on my channel
<a
target="_blank"
rel="noopener noreferrer"
href="https://www.youtube.com/c/LPTeach/"
>LP Teach</a
>
</p>
</div>
</div>
<!-- service item end -->
</div>
</div>
</section>
<!-- services section end -->
<!-- projects section start -->
<section class="projects-section section" id="projects">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="projects">Latest Works</h2>
</div>
</div>
<!-- projects filter start -->
<div class="row">
<div class="projects-filter">
<span class="filter-item outer-shadow active" data-target="all"
>all</span
>
<span class="filter-item" data-target="web-app">web apps</span>
<span class="filter-item" data-target="e-commerce">e-commerce</span>
<span class="filter-item" data-target="extension">Extensions</span>
<span class="filter-item" data-target="designs">designs</span>
<span class="filter-item" data-target="ui-design">UI designs</span>
<span class="filter-item" data-target="other">other</span>
</div>
</div>
<!-- projects filter end -->
<!-- projects items start -->
<div class="row projects-items">
<!--
!FOR PHOTOSHOP PROJECTS, don't bring any details.
-->
<!-- *Copy and fill with new details for projects 👇🏾 -->
<!-- projects item start -->
<div class="projects-item" data-category="ui-design">
<div class="projects-item-inner outer-shadow">
<div class="projects-item-img">
<img
loading="lazy"
src="img/projects/thumbnails/oak-plus.png"
alt="oak + UI Design"
data-screenshots="
img/projects/project-pics/ui-design/oak-plus/oak-plus-1.png,
img/projects/project-pics/ui-design/oak-plus/oak-plus-2.png,
img/projects/project-pics/ui-design/oak-plus/oak-plus-3.png,
img/projects/project-pics/ui-design/oak-plus/oak-plus-4.png,
img/projects/project-pics/ui-design/oak-plus/oak-plus-5.png,
img/projects/project-pics/ui-design/oak-plus/oak-plus-6.png,
img/projects/project-pics/ui-design/oak-plus/oak-plus-7.png,
img/projects/project-pics/ui-design/oak-plus/oak-plus-8.png,
img/projects/project-pics/ui-design/oak-plus/oak-plus-9.png
"
/>
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="projects-item-title">OAK+ UI Design (User End)</p>
<!-- project item details start -->
<div class="projects-item-details">
<div class="row">
<div class="description">
<h3>Project Brief:</h3>
<p>
This is the user end ui design to a freelance app called
oak+
</p>
</div>
<div class="info">
<h3>Project info:</h3>
<ul>
<li>Date - <span>2021</span></li>
<li>Client - <span>OAK+</span></li>
<li>Tools - <span>XD</span></li>
</ul>
</div>
</div>
</div>
<!-- project item details end -->
</div>
</div>
<!-- projects item end -->
<!-- *Copy and fill with new details for projects 👆🏾 -->
<!-- *Copy and fill with new details for projects 👇🏾 -->
<!-- projects item start -->
<div class="projects-item" data-category="web-app">
<div class="projects-item-inner outer-shadow">
<div class="projects-item-img">
<img
loading="lazy"
src="img/projects/thumbnails/portfolio-v3.png"
alt="Llewellyn Paintsil's Portfolio Version 3"
data-screenshots="
img/projects/project-pics/web-apps/portfolio-v3/portfolio-v3-1.png,
img/projects/project-pics/web-apps/portfolio-v3/portfolio-v3-2.png,
img/projects/project-pics/web-apps/portfolio-v3/portfolio-v3-3.png,
img/projects/project-pics/web-apps/portfolio-v3/portfolio-v3-4.png,
img/projects/project-pics/web-apps/portfolio-v3/portfolio-v3-5.png,
img/projects/project-pics/web-apps/portfolio-v3/portfolio-v3-6.png,
img/projects/project-pics/web-apps/portfolio-v3/portfolio-v3-7.png
"
/>
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="projects-item-title">Portfolio V3</p>
<!-- project item details start -->
<div class="projects-item-details">
<div class="row">
<div class="description">
<h3>Project Brief:</h3>
<p>
This is my 3rd portfolio. Its still in development but it
looks good.
</p>
</div>
<div class="info">
<h3>Project info:</h3>
<ul>
<li>Date - <span>2021</span></li>
<li>Client - <span>Llewellyn Paintsil</span></li>
<li>
Tools - <span>React.js, HTML, CSS, Yarn, Netlify</span>
</li>
</ul>
</div>
</div>
</div>
<!-- project item details end -->
</div>
</div>
<!-- projects item end -->
<!-- *Copy and fill with new details for projects 👆🏾 -->
<!-- *Copy and fill with new details for projects 👇🏾 -->
<!-- projects item start -->
<div class="projects-item" data-category="other">
<div class="projects-item-inner outer-shadow">
<div class="projects-item-img">
<img
loading="lazy"
src="img/projects/thumbnails/glassmorphic-calculator.png"
alt="Glassmorphic Calculator"
data-screenshots="
img/projects/project-pics/other/glassmorphic-calculator/glassmorphic-calculator-1.png
"
/>
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="projects-item-title">Glassmorphic Calculator</p>
<!-- project item details start -->
<div class="projects-item-details">
<div class="row">
<div class="description">
<h3>Project Brief:</h3>
<p>
Why do simple calculations on a boring old calculator
design, why not spice it up with some colors and
glassmorphism 😁.
</p>
</div>
<div class="info">
<h3>Project info:</h3>
<ul>
<li>Date - <span>2021</span></li>
<li>Client - <span>Llewellyn Paintsil</span></li>
<li>
Tools -
<span>HTML, CSS, JavaScript, Vanilla tilt.js</span>
</li>
<li>
Demo -
<span
><a
href="http://bit.ly/Simple-Glassmorphic-Calculator"
target="_blank"
rel="noopener noreferrer"
>http://bit.ly/Simple-Glassmorphic-Calculator</a
></span
>
</li>
<li>
Source Code -
<span
><a
href="http://bit.ly/Simple-Glassmorphic-Calculator-Source-Code"
target="_blank"
rel="noopener noreferrer"
>http://bit.ly/Simple-Glassmorphic-Calculator-Source-Code</a
></span
>
</li>
</ul>
</div>
</div>
</div>
<!-- project item details end -->
</div>
</div>
<!-- projects item end -->
<!-- *Copy and fill with new details for projects 👆🏾 -->
<!-- *Copy and fill with new details for projects 👇🏾 -->
<!-- projects item start -->