-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1470 lines (1405 loc) · 61.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
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 charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Shreyak Silwal</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<!-- Favicons -->
<link href="assets/img/Logo/Shreyak.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial:wght@400&display=swap"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet" />
<!-- =======================================================
* Template Name: EasyFolio
* Template URL: https://bootstrapmade.com/easyfolio-bootstrap-portfolio-template/
* Updated: Feb 21 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body class="index-page">
<header id="header" class="header d-flex align-items-center sticky-top">
<div
class="header-container container-fluid container-xl position-relative d-flex align-items-center justify-content-between"
>
<a
href="index.html"
class="logo d-flex align-items-center me-auto me-xl-0"
>
<!-- Uncomment the line below if you also wish to use an image logo -->
<!-- <img src="assets/img/logo.webp" alt=""> -->
<h1 class="sitename">Shreyak Silwal</h1>
</a>
<nav id="navmenu" class="navmenu">
<ul>
<li><a href="#hero" class="active">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#portfolio">Certificates</a></li>
<li><a href="#services">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<i class="mobile-nav-toggle d-xl-none bi bi-list"></i>
</nav>
<div class="header-social-links">
<!-- <a href="#" class="twitter"><i class="bi bi-twitter-x"></i></a> -->
<!-- <a href="#" class="facebook"><i class="bi bi-facebook"></i></a> -->
<!-- <a href="#" class="instagram"><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/shreyaksilwal/" class="linkedin" target="blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</header>
<main class="main">
<!-- Hero Section -->
<section id="hero" class="hero section">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row align-items-center content">
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="200">
<h2>
Transforming Data into Impact: Precision, Passion & Purpose
</h2>
<p class="lead">
I turn complex data into clear insights through analytical rigor
and storytelling. By uncovering hidden patterns and crafting
actionable solutions, I empower decisions that drive growth,
efficiency, and meaningful impact.
</p>
<div class="cta-buttons" data-aos="fade-up" data-aos-delay="300">
<a href="#services" class="btn btn-primary">View My Work</a>
<a href="#contact" class="btn btn-outline">Let's Connect</a>
</div>
</div>
<div class="col-lg-6">
<div class="hero-image">
<img
src="assets/img/profile/ShreyakProf.png"
alt="Portfolio Hero Image"
class="img-fluid"
data-aos="zoom-out"
data-aos-delay="300"
/>
<div class="shape-1"></div>
<div class="shape-2"></div>
</div>
</div>
</div>
</div>
</section>
<!-- /Hero Section -->
<!-- About Section -->
<section id="about" class="about section light-background">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>About</h2>
<div class="title-shape">
<svg viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg">
<path
d="M 0,10 C 40,0 60,20 100,10 C 140,0 160,20 200,10"
fill="none"
stroke="currentColor"
stroke-width="2"
></path>
</svg>
</div>
<p>
Hi! I’m Shreyak, a data analyst passionate about transforming raw
information into strategic insights. With knack for problem-solving,
I thrive on uncovering patterns, crafting data-driven narratives,
and building solutions that empower smarter decisions. Leveraging
tools like R, SQL, Tableau and Excel, I bridge technical precision
with business impact — turning complexity into clarity to drive
growth and innovation.
</p>
</div>
<!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row align-items-center">
<div
class="col-lg-6 position-relative"
data-aos="fade-right"
data-aos-delay="200"
>
<div class="about-image">
<img
src="assets/img/profile/SquareShreyak.png"
alt="Profile Image"
class="img-fluid rounded-4"
/>
</div>
</div>
<div class="col-lg-6" data-aos="fade-left" data-aos-delay="300">
<div class="about-content">
<span class="subtitle">About Me</span>
<h2>Data Analyst & Enthusiast</h2>
<p class="lead mb-4">
I am passionate about data analytics and enjoy uncovering
insights from data to drive informed decision-making. While I
am currently building my skills in data analysis, I am eager
to explore advanced techniques and contribute to impactful
projects in the field.
</p>
<p class="mb-4">
Neque porro quisquam est, qui dolorem ipsum quia dolor sit
amet
</p>
<div class="personal-info">
<div class="row g-4">
<div class="col-6">
<div class="info-item">
<span class="label">Name</span>
<span class="value">Shreyak Kant Silwal</span>
</div>
</div>
<div class="col-6">
<div class="info-item">
<span class="label">Phone</span>
<span class="value">+44 7585 533369</span>
</div>
</div>
<div class="col-6">
<div class="info-item">
<span class="label">Age</span>
<span class="value">26 Years</span>
</div>
</div>
<div class="col-6">
<div class="info-item">
<span class="label">Email</span>
<span class="value">[email protected]</span>
</div>
</div>
<!-- <div class="col-6">
<div class="info-item">
<span class="label">Occupation</span>
<span class="value">Shif Manager</span>
</div>
</div> -->
<div class="col-6">
<div class="info-item">
<span class="label">Nationality</span>
<span class="value">Nepali</span>
</div>
</div>
</div>
</div>
<!-- <div class="signature mt-4">
<div class="signature-image">
<img
src="assets/img/misc/signature-1.webp"
alt=""
class="img-fluid"
/>
</div>
<div class="signature-info">
<h4>Eliot Johnson</h4>
<p>Adipiscing Elit, Lorem Ipsum</p>
</div>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- /About Section -->
<!-- Skills Section -->
<section id="skills" class="skills section">
<div class="container section-title" data-aos="fade-up">
<h2>Skills</h2>
<div class="title-shape">
<svg viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg">
<path
d="M 0,10 C 40,0 60,20 100,10 C 140,0 160,20 200,10"
fill="none"
stroke="currentColor"
stroke-width="2"
></path>
</svg>
</div>
<p>
Skilled in data analysis with R, SQL, and Excel. Experienced in data
visualization (Tableau, Power BI), and working on my statistical
analysis. Strong problem-solving skills and a passion for uncovering
insights.
</p>
</div>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row g-4 skills-animation">
<div
class="col-md-6 col-lg-3"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="skill-box">
<span style="display: flex; align-items: center; gap: 12px">
<img src="assets/img/Logo/R.svg" alt="R Logo" />
<h3 style="margin: 0">R</h3>
</span>
<!-- <p>
Sed ut perspiciatis unde omnis iste natus error sit
voluptatem.
</p> -->
<!-- <span class="text-end d-block">90%</span>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div> -->
</div>
</div>
<div
class="col-md-6 col-lg-3"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="skill-box">
<span style="display: flex; align-items: center; gap: 8px">
<img src="assets/img/Logo/Tableau.svg" alt="R Logo" />
<h3 style="margin: 0">Tableau</h3>
</span>
<!-- <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur.</p>
<span class="text-end d-block">90%</span>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="95"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div> -->
</div>
</div>
<div
class="col-md-6 col-lg-3"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="skill-box">
<span style="display: flex; align-items: center; gap: 8px">
<img src="assets/img/Logo/SQL.svg" alt="R Logo" />
<h3 style="margin: 0">SQL</h3>
</span>
<!-- <div class="progress">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="80"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div> -->
</div>
</div>
<div
class="col-md-6 col-lg-3"
data-aos="fade-up"
data-aos-delay="400"
>
<div class="skill-box">
<span style="display: flex; align-items: center; gap: 8px">
<img src="assets/img/Logo/Excel.svg" alt="R Logo" />
<h3 style="margin: 0">Excel</h3>
</span>
<!-- <span class="text-end d-block">55%</span>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="55"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- /Skills Section -->
<!-- Resume Section -->
<section id="resume" class="resume section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Resume</h2>
<div class="title-shape">
<svg viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg">
<path
d="M 0,10 C 40,0 60,20 100,10 C 140,0 160,20 200,10"
fill="none"
stroke="currentColor"
stroke-width="2"
></path>
</svg>
</div>
<p>
Passionate and analytical data professional with a knack for
uncovering insights. Experienced in transforming raw data into
meaningful visualizations and reports, driven by curiosity and a
commitment to data-driven excellence.
</p>
</div>
<!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row">
<div class="col-12">
<div class="resume-wrapper">
<div class="resume-block" data-aos="fade-up">
<h2>Work Experience</h2>
<!-- <p class="lead">
Passionate and analytical data professional with a knack for
uncovering insights. Experienced in transforming raw data
into meaningful visualizations and reports, driven by
curiosity and a commitment to data-driven excellence.
</p> -->
<div class="timeline">
<div
class="timeline-item"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="timeline-left">
<h4 class="company">McDonald’s</h4>
<h3 class="address">Eltham, UK</h3>
<span class="period">June 2022 - Current</span>
</div>
<div class="timeline-dot"></div>
<div class="timeline-right">
<h3 class="position">Shift Manager | Staff</h3>
<p class="description"></p>
<ul>
<li>
Enhanced operational efficiency and safety by
optimizing workspace layouts, managing cash handling
(£5000+ per shift), and maintaining high customer
satisfaction while ensuring adherence to KPIs.
</li>
<li>
Trained and mentored staff on procedures, documented
inventory transfers, and conducted weekly inventory
counts to maintain accurate stock levels and reduce
discrepancies.
</li>
<li>
Ensured compliance with safety standards and
cleanliness, particularly during surprise food
safety inspections, and maintained internal systems
for smooth daily operations.
</li>
</ul>
</div>
</div>
<div
class="timeline-item"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="timeline-left">
<h4 class="company">Dominos’</h4>
<h3 class="address">Eltham, UK</h3>
<span class="period">February 2022 - May 2022</span>
</div>
<div class="timeline-dot"></div>
<div class="timeline-right">
<h3 class="position">
Customer Service Representative
</h3>
<ul>
<li>
Worked closely with top writers and producers to
refine scripts and production plans, contributing to
the successful delivery of highly rated TV shows.
</li>
<li>
Efficiently coordinated all logistics—filming
equipment, props, and locations—resulting in
seamless production and on-time completion of
projects.
</li>
<li>
Led the post-production process, ensuring final
projects exceeded expectations and were broadcast
ahead of schedule, contributing to audience
satisfaction.
</li>
<li>
Oversee the efficient use of production project
budgets ranging from $2,000 - $25,000
</li>
</ul>
<p></p>
</div>
</div>
<div
class="timeline-item"
data-aos="fade-up"
data-aos-delay="400"
>
<div class="timeline-left">
<h4 class="company">Kyra Works Pvt. Ltd.</h4>
<span class="period">August 2021 - December 2021</span>
</div>
<div class="timeline-dot"></div>
<div class="timeline-right">
<h3 class="position">Graphic design specialist</h3>
<p class="description">
<ul>
<li>
Worked closely with top writers and producers to refine scripts and production plans, contributing to the successful
delivery of highly rated TV shows.
</li>
<li>Efficiently coordinated all logistics—filming equipment, props, and locations—resulting in seamless production and
on-time completion of projects.</li>
<li>Led the post-production process, ensuring final projects exceeded expectations and were broadcast ahead of schedule,
contributing to audience satisfaction.</li>
</ul>
</p>
</div>
</div>
</div>
</div>
<div
class="resume-block"
data-aos="fade-up"
data-aos-delay="100"
>
<h2>My Education</h2>
<!-- <p class="lead">
Maecenas tempus tellus eget condimentum rhoncus sem quam
semper libero sit amet adipiscing.
</p> -->
<div class="timeline">
<div
class="timeline-item"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="timeline-left">
<h4 class="company">University of Greenwich</h4>
<h3 class="address">London, UK</h3>
<span class="period">January 2022 - January 2023</span>
</div>
<div class="timeline-dot"></div>
<div class="timeline-right">
<h3 class="position">Masters of Arts in Strategic Marketing</h3>
<p class="description">
Curabitur ullamcorper ultricies nisi nam eget dui
etiam rhoncus maecenas tempus.
</p>
</div>
</div>
<div
class="timeline-item"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="timeline-left">
<h4 class="company">Oscar Int'l College,</h4>
<h4 class="company"> Tribhuvan University</h4>
<h3 class="address">Kathmandu, Nepal</h3>
<span class="period">November 2017 - June 2020</span>
</div>
<div class="timeline-dot"></div>
<div class="timeline-right">
<h3 class="position">
Bachelor’s in Film Studies
</h3>
<p class="description">
Major: Screen Acting
</p>
</div>
</div>
<!-- <div
class="timeline-item"
data-aos="fade-up"
data-aos-delay="400"
>
<div class="timeline-left">
<h4 class="company">Vestibulum University</h4>
<span class="period">2015-2019</span>
</div>
<div class="timeline-dot"></div>
<div class="timeline-right">
<h3 class="position">
Bachelor of Fine Arts & Graphic Design
</h3>
<p class="description">
Curabitur ullamcorper ultricies nisi nam eget dui
etiam rhoncus maecenas tempus.
</p>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /Resume Section -->
<!-- Portfolio Section -->
<section id="portfolio" class="portfolio section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Certifications</h2>
<div class="title-shape">
<svg viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg">
<path
d="M 0,10 C 40,0 60,20 100,10 C 140,0 160,20 200,10"
fill="none"
stroke="currentColor"
stroke-width="2"
></path>
</svg>
</div>
<p>
Over the past few months, I have worked on several different projects to refine my skills in Data Analaysis and Visualization.
</p>
</div>
<!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div
class="isotope-layout"
data-default-filter="*"
data-layout="masonry"
data-sort="original-order"
>
<div
class="portfolio-filters-container"
data-aos="fade-up"
data-aos-delay="200"
>
<ul class="portfolio-filters isotope-filters">
<li data-filter="*" class="filter-active">All Certificates</li>
<li data-filter=".filter-web">Data Analytics</li>
<!-- <li data-filter=".filter-graphics">Graphics</li> -->
<!-- <li data-filter=".filter-motion">Motion</li> -->
<li data-filter=".filter-brand">Branding</li>
</ul>
</div>
<div
class="row g-4 isotope-container"
data-aos="fade-up"
data-aos-delay="300"
>
<div
class="col-lg-6 col-md-6 portfolio-item isotope-item filter-web"
>
<div class="portfolio-card">
<div class="portfolio-image">
<img
src="assets/img/Certificates/C1.jpeg"
class="img-fluid"
alt=""
loading="lazy"
/>
<div class="portfolio-overlay">
<div class="portfolio-actions">
<a
href="assets/img/Certificates/C1.jpeg"
class="glightbox preview-link"
data-gallery="portfolio-gallery-web"
><i class="bi bi-eye"></i
></a>
<a href="https://coursera.org/share/82e679c289f0cba2002aa6068fd8928c" class="details-link" target="_blank"
><i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<div class="portfolio-content">
<span class="category">Coursera</span>
<h3>Google Data Analytics</h3>
<p>Hands on practice-based assessment designed to prepare for introductory-level roles in Data Analytics. </p>
</div>
</div>
</div>
<!-- End Portfolio Item -->
<div
class="col-lg-6 col-md-6 portfolio-item isotope-item filter-web"
>
<div class="portfolio-card">
<div class="portfolio-image">
<img
src="assets/img/Certificates/C3.jpeg"
class="img-fluid"
alt=""
loading="lazy"
/>
<div class="portfolio-overlay">
<div class="portfolio-actions">
<a
href="assets/img/Certificates/C3.jpeg"
class="glightbox preview-link"
data-gallery="portfolio-gallery-web"
><i class="bi bi-eye"></i
></a>
<a href="https://coursera.org/share/292c7f3c612e777ab08608d16a4433b2" class="details-link" target="_blank"
><i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<div class="portfolio-content">
<span class="category">Coursera</span>
<h3> Analytics with R Programming</h3>
<p>Hands on practice-based assessment of basic formatting in R Markdown to create structure and emphasize content. </p>
</div>
</div>
</div>
<!-- End Portfolio Item -->
<div
class="col-lg-6 col-md-6 portfolio-item isotope-item filter-web"
>
<div class="portfolio-card">
<div class="portfolio-image">
<img
src="assets/img/Certificates/C4.jpeg"
class="img-fluid"
alt=""
loading="lazy"
/>
<div class="portfolio-overlay">
<div class="portfolio-actions">
<a
href="assets/img/Certificates/C4.jpeg"
class="glightbox preview-link"
data-gallery="portfolio-gallery-web"
><i class="bi bi-eye"></i
></a>
<a href="https://coursera.org/share/e140423f11f4001e41f45471ee248da2" class="details-link" target="_blank"
><i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<div class="portfolio-content">
<span class="category">Coursera</span>
<h3> Share Data Through the Art of Visualization</h3>
<p>Hands on practice-based assessment of explaining principles and data driven stories, including reference to their importance and their attributes.</p>
</div>
</div>
</div>
<!-- End Portfolio Item -->
<div
class="col-lg-6 col-md-6 portfolio-item isotope-item filter-web"
>
<div class="portfolio-card">
<div class="portfolio-image">
<img
src="assets/img/Certificates/C5.jpeg"
class="img-fluid"
alt=""
loading="lazy"
/>
<div class="portfolio-overlay">
<div class="portfolio-actions">
<a
href="assets/img/Certificates/C5.jpeg"
class="glightbox preview-link"
data-gallery="portfolio-gallery-web"
><i class="bi bi-eye"></i
></a>
<a href="https://coursera.org/share/d1b640758b33421576ae3676c744c49c" class="details-link" target="_blank"
><i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<div class="portfolio-content">
<span class="category">Coursera</span>
<h3> Analyze Data to Answer Questions</h3>
<p>Hands on practice-based assessment of creating SQL queries to combine data and conduct basic calculations on data in spreadsheets.</p>
</div>
</div>
</div>
<!-- End Portfolio Item -->
<div
class="col-lg-6 col-md-6 portfolio-item isotope-item filter-web"
>
<div class="portfolio-card">
<div class="portfolio-image">
<img
src="assets/img/Certificates/C6.jpeg"
class="img-fluid"
alt=""
loading="lazy"
/>
<div class="portfolio-overlay">
<div class="portfolio-actions">
<a
href="assets/img/Certificates/C6.jpeg"
class="glightbox preview-link"
data-gallery="portfolio-gallery-web"
><i class="bi bi-eye"></i
></a>
<a href="https://coursera.org/share/e3cc69a9e4b1e1dd01eb68a869e61528" class="details-link" target="_blank"
><i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<div class="portfolio-content">
<span class="category">Coursera</span>
<h3>Ask Questions to Make Data-Driven Decisions</h3>
<p>Hands on practice-based assessment of describing the key ideas associated with structured thinking.</p>
</div>
</div>
</div>
<!-- End Portfolio Item -->
<div
class="col-lg-6 col-md-6 portfolio-item isotope-item filter-web"
>
<div class="portfolio-card">
<div class="portfolio-image">
<img
src="assets/img/Certificates/C7.jpeg"
class="img-fluid"
alt=""
loading="lazy"
/>
<div class="portfolio-overlay">
<div class="portfolio-actions">
<a
href="assets/img/Certificates/C7.jpeg"
class="glightbox preview-link"
data-gallery="portfolio-gallery-web"
><i class="bi bi-eye"></i
></a>
<a href="https://coursera.org/share/9c788376783c16785a7b7081ca1e6e38" class="details-link" target="_blank"
><i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<div class="portfolio-content">
<span class="category">Coursera</span>
<h3>Foundations: Data, Data, Everywhere</h3>
<p>Understand the role of spreadsheets, query languages, and data visualization tools in data analytics.</p>
</div>
</div>
</div>
<!-- End Portfolio Item -->
<div
class="col-lg-6 col-md-6 portfolio-item isotope-item filter-brand"
>
<div class="portfolio-card">
<div class="portfolio-image">
<img
src="assets/img/Certificates/C8.png"
class="img-fluid"
alt=""
loading="lazy"
/>
<div class="portfolio-overlay">
<div class="portfolio-actions">
<a
href="assets/img/Certificates/C8.png"
class="glightbox preview-link"
data-gallery="portfolio-gallery-web"
><i class="bi bi-eye"></i
></a>
<a href="https://coursera.org/share/9c788376783c16785a7b7081ca1e6e38" class="details-link" target="_blank"
><i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</div>
<div class="portfolio-content">
<span class="category">Forage</span>
<h3>Branding & Design Virtual Internship</h3>
<p>completed practical tasks in Brand and Authenticity, Product Design and Craft, Digital Marketing, Community Building</p>
</div>
</div>
</div>
<!-- End Portfolio Item -->
</div>
<!-- End Portfolio Container -->
</div>
</div>
</section>
<!-- /Portfolio Section -->
<!-- Testimonials Section -->
<!-- <section id="testimonials" class="testimonials section light-background"> -->
<!-- Section Title -->
<!-- <div class="container section-title" data-aos="fade-up">
<h2>Testimonials</h2>
<div class="title-shape">
<svg viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg">
<path
d="M 0,10 C 40,0 60,20 100,10 C 140,0 160,20 200,10"
fill="none"
stroke="currentColor"
stroke-width="2"
></path>
</svg>
</div>
<p>
Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse
quam nihil molestiae consequatur vel illum qui dolorem
</p>
</div> -->
<!-- End Section Title -->
<!-- <div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="testimonials-slider swiper init-swiper">
<script type="application/json" class="swiper-config">
{
"slidesPerView": 1,
"loop": true,
"speed": 600,
"autoplay": {
"delay": 5000
},
"navigation": {
"nextEl": ".swiper-button-next",
"prevEl": ".swiper-button-prev"
}
}
</script> -->
<!--
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<div class="row">
<div class="col-lg-8">
<h2>Sed ut perspiciatis unde omnis</h2>
<p>
Proin iaculis purus consequat sem cure digni ssim donec
porttitora entum suscipit rhoncus. Accusantium quam,
ultricies eget id, aliquam eget nibh et. Maecen aliquam,
risus at semper.
</p>
<p>
Beatae magnam dolore quia ipsum. Voluptatem totam et qui
dolore dignissimos. Amet quia sapiente laudantium nihil
illo et assumenda sit cupiditate. Nam perspiciatis
perferendis minus consequatur. Enim ut eos quo.
</p>
<div class="profile d-flex align-items-center">
<img
src="assets/img/person/person-m-7.webp"
class="profile-img"
alt=""
/>
<div class="profile-info">
<h3>Saul Goodman</h3>
<span>Client</span>
</div>
</div>
</div>
<div class="col-lg-4 d-none d-lg-block">
<div class="featured-img-wrapper">
<img
src="assets/img/person/person-m-7.webp"
class="featured-img"
alt=""
/>
</div>
</div>
</div>
</div>
</div> -->
<!-- End Testimonial Item -->
<!--
<div class="swiper-slide">
<div class="testimonial-item">
<div class="row">
<div class="col-lg-8">
<h2>Nemo enim ipsam voluptatem</h2>
<p>
Export tempor illum tamen malis malis eram quae irure
esse labore quem cillum quid cillum eram malis quorum
velit fore eram velit sunt aliqua noster fugiat irure
amet legam anim culpa.
</p>
<p>
Dolorem excepturi esse qui amet maxime quibusdam aut
repellendus voluptatum. Corrupti enim a repellat cumque
est laborum fuga consequuntur. Dolorem nostrum deleniti
quas voluptatem iure dolorum rerum. Repudiandae
doloribus ut repellat harum vero aut. Modi aut velit
aperiam aspernatur odit ut vitae.
</p>
<div class="profile d-flex align-items-center">
<img
src="assets/img/person/person-f-8.webp"
class="profile-img"
alt=""
/>
<div class="profile-info">
<h3>Sara Wilsson</h3>
<span>Designer</span>