-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1289 lines (1141 loc) · 47.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
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" />
<title>Kunal's Portfolio</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Favicons -->
<link href="img/k t pn.png" rel="icon" />
<link href="img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<link href="lib/animate/animate.min.css" rel="stylesheet" />
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet" />
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet" />
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet" />
<!-- =======================================================
page top
= -->
</head>
<body id="page-top">
<!--/ Nav Start /-->
<nav
class="navbar navbar-b navbar-trans navbar-expand-md fixed-top"
id="mainNav"
>
<div class="container">
<a class="navbar-brand js-scroll" href="#page-top">Portfolio. </a>
<button
class="navbar-toggler collapsed"
type="button"
data-toggle="collapse"
data-target="#navbarDefault"
aria-controls="navbarDefault"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span></span>
<span></span>
<span></span>
</button>
<div
class="navbar-collapse collapse justify-content-end"
id="navbarDefault"
>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#service">Services</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#blog">PROJECTS</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#contact">Contact</a>
</li>
<a
class="button"
href="https://github.com/kunalyadav19"
download="Kunal's Resume"
target="_blank"
rel="noreferrer"
>Github</a
>
<a
class="button"
href="CV/static/media/cvkunalyadav.pdf"
download="Kunal's Resume"
target="_blank"
rel="noreferrer"
>CV</a
>
<a class="button" href="https://neon-flux.vercel.app" download="Kunal's Startup" target="_blank"
rel="noreferrer">NeonFlux</a>
</ul>
</div>
</div>
</nav>
<!--/ Nav End /-->
<!--/ Intro Skew Star /-->
<div
id="home"
class="intro route bg-image"
style="background-image: url(img/bg\ effect\ .gif)"
>
<div class="overlay-itro"></div>
<div class="intro-content display-table">
<div class="table-cell">
<div class="container">
<!--<p class="display-6 color-d">Hello, world!</p>-->
<div class="text-four">Hey,</div> <h1 class="intro-title mb-4">I'm Kunal Yadav</h1> <div class="text-four">From India</div>
<p class="intro-subtitle">
<span class="text-slider-items"
> Cyber Security,Linux Bash,SDE,UI/UX,Web Developer,Web Designer,Frontend
Developer,Graphic Designer,IOT Architecture</span
>
<strong class="text-slider"></strong>
</p>
<!-- <p class="pt-3"><a class="btn btn-primary btn js-scroll px-4" href="#about" role="button">Learn More</a></p> -->
</div>
</div>
</div>
</div>
<!--/ Intro Skew End /-->
<section id="about" class="about-mf sect-pt4 route"
style="background-image: url(img/)"
>
<div class="overlay-itro"></div>
<div class="intro-content display-table"></div>
<div class="table-cell"></div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-sm-6 col-md-5">
<div class="about-img">
<img
src="img/IMG_2937_crop2.jpg"
class="img-fluid rounded b-shadow-a"
alt=""
/>
</div>
</div>
<div class="col-sm-6 col-md-7">
<div class="about-info">
<p>
<span class="title-s">Name: </span>
<span>Kunal Yadav</span>
</p>
<p>
<span class="title-s">Profile: </span>
<span>Software Development Engineer (SDE)</span>
</p>
<p>
<span class="title-s">Email: </span>
<span>[email protected]</span>
</p>
<p>
<span class="title-s">Phone: </span>
<span>(+91) 773 7983 100</span>
</p>
<a
class="button"
href="CV/static/media/cvkunalyadav.pdf"
download="Kunal's Resume"
target="_blank"
rel="noreferrer"
>Download CV</a
>
<div class="socials">
<ul>
<li>
<a href="https://github.com/kunalyadav19">
<img
src="img/icons8-github.svg"
alt=""
class="ico-circle"
/>
<span class="author"></span>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/kunalyadav2234/">
<img
src="img/317750_linkedin_icon.png"
alt=""
class="ico-circle"
/>
<span class="author"></span>
</a>
</li>
</ul></div>
</div>
</div>
</div>
<div class="skill-mf">
<p class="title-s">Skill</p>
<span>FrontEnd -
HTML
CSS
SCSS
React JS</span> <span class="pull-right">50%</span>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
style="width: 50%"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
<span>BackEnd
PHP - Laravel ,
React Native , Java , C++ </span>
<span class="pull-right">50%</span>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
style="width: 50%"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
<span>Databases -
MySQL ,Google Cloud , AWS ,MangoDB
</span> <span class="pull-right">35%</span>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
style="width: 35%"
aria-valuenow="35"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
<span>App Development
React Native
Java
Firebase</span> <span class="pull-right">50%</span>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
style="width: 50%"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
<span>Languages
Python
C++
JavaScript
PHP</span> <span class="pull-right">40%</span>
<div class="progress">
<div
class="progress-bar"
role="progressbar"
style="width: 40%"
aria-valuenow="40"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="about-me pt-4 pt-md-0">
<div class="title-box-2">
<h5 class="title-left">About me</h5>
</div>
<p class="lead">
Hello I'm Kunal , I am from Bhilwara - A City of Textiles
and Looms Situated in Mewar Region of Rajasthan,
</p>
<p class="lead">
Currently in Pune seeking for right Opportunity and
improving skills day by day.
</p>
<p class="lead">
My passion for coding emerged during my school years when I found myself performing averagely in other subjects. Coding became my refuge, offering me a unique avenue for self-expression and intellectual growth. Today, my greatest fear is missing out on opportunities to delve deeper into this captivating field.
</p>
<p class="lead">
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/ Section Services Start /-->
<section id="service" class="services-mf route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">Services</h3>
<p class="subtitle-a">Things I can do</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="ion-monitor"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Web Development</h2>
<p class="s-description text-center">
I Develop Responsive and High Performance Websites as per as Requirements using React Native, Java, Laravel , HTML ,CSS only.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="ion-code-working"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Mobile App Dev</h2>
<p class="s-description text-center">
I also Develop Mobile Applications as per as Requirements using React Native & Java.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="ion-code-working"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">IOT Architecture</h2>
<p class="s-description text-center">
I Am Also Intrested to Develop IOT Architecture as per as Requirements using JavaScript, C, C++ , HTML.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"
><i class="ion-paintbrush"></i
></span>
</div>
<div class="service-content">
<h2 class="s-title">Design</h2>
<p class="s-description text-center">
I Also like to practice Some Types of Designing as per as Requirements using Adobe illustrator , Canva
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="ion-monitor"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Linux </h2>
<p class="s-description text-center">
I possess a foundational understanding of Linux, enabling me to host and maintain servers proficiently. My knowledge extends to handling basic operations, ensuring smooth and effective server management in diverse environments.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="ion-android-phone-portrait"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">UI/UX</h2>
<p class="s-description text-center">
I Am Also Intrested to Design UI/UX as per as Requirements using Figma, Framer & Other Tools and Websites.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/ Section Services End /-->
<div
class="section-counter paralax-mf bg-image"
style="background-image: url(img/bg\ effect\ .gif)"
>
<div class="overlay-mf"></div>
<div class="container">
<div class="row">
<div class="col-sm-3 col-lg-3">
<div class="counter-box">
<div class="counter-ico">
<span class="ico-circle"
><i class="ion-ribbon-a"></i
></span>
</div>
<div class="counter-num">
<p class="counter">20</p>
<span class="counter-text">CERTIFICATION</span>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-3">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"
><i class="ion-monitor"></i
></span>
</div>
<div class="counter-num">
<p class="counter">4</p>
<span class="counter-text">PROJECTS</span>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-3">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="ion-code-working"></i></span>
</div>
<div class="counter-num">
<p class="counter">2</p>
<span class="counter-text">SPECIALIZATIONS</span>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-3">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="ion-ribbon-a"></i></span>
</div>
<div class="counter-num">
<p class="counter">5</p>
<span class="counter-text">SKILLS</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/ Section Portfolio Start /-->
<section id="blog" class="blog-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">PROJECTS</h3>
<p class="subtitle-a">
Some of My Work.
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://github.com/kunalyadav19/iPlay-Erisplay"
><img src="img/music player java.png" alt="" class="img-fluid"
/></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Java</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://github.com/kunalyadav19/iPlay-Erisplay"> iPlay </a>
</h3>
<p class="card-description">
"I Play" is a music player tailored for Android devices, meticulously coded using a combination of Kotlin and Java within the Android Studio environment. This app delivers a seamless and user-friendly audio experience, with an intuitive interface, playback controls. The fusion of Kotlin's conciseness and Java's robustness ensures optimal performance, making "i Play" a standout choice for music enthusiasts on the Android platform.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img
src="img/kotlin logo.png"
alt=""
class="avatar rounded-circle"
/>
<span class="author">Kotlin</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> GITHUB
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://github.com/kunalyadav19/laravel_auth"
><img src="img/laravel auth .png" alt="" class="img-fluid"
/></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">PHP</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://github.com/kunalyadav19/laravel_auth">Laravel-Authentication</a>
</h3>
<p class="card-description">
Laravel provides a robust authentication system out of the box, making it easy to manage user credentials and permissions. It also offers features like two-factor authentication, email verification, and password hashing for enhanced security. Overall, Laravel's authentication simplifies the implementation of user authentication and authorization in web applications.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img
src="img/1969px-Laravel.svg.png"
alt=""
class="avatar rounded-circle"
/>
<span class="author">Laravel</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> Github
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://github.com/kunalyadav19/Astra-Smart-Door-Lock"
><img src="img/unnam5555ed.png" alt="" class="img-fluid"
/></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">IOT</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://github.com/kunalyadav19/Astra-Smart-Door-Lock">ASTRA Door Lock (IOT)</a>
</h3>
<p class="card-description">
A smart door lock crafted with NodeMCU and a solenoid magnet lock, seamlessly linked through the Blynk IoT platform. This innovative solution enables remote access control, allowing users to lock or unlock the door using a mobile app. The NodeMCU serves as the brain, handling communication with the Blynk server, while the solenoid magnet lock provides a secure and efficient locking mechanism. Together, this smart integration enhances security and convenience for modern access control systems.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img
src="img/c++.png"
alt=""
class="avatar rounded-circle"
/>
<span class="author">C++</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> GITHUB
</div>
</div>
</div>
</div>
<!--/ Section Portfolio 2 line/-->
<div class="row">
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://github.com/kunalyadav19/kasm-workspaces"
><img src="img/Kasm-1673718054458.avif" alt="" class="img-fluid"
/></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Docker-Compose + Swap Partition + Linux Distro</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://github.com/kunalyadav19/kasm-workspaces"> Kasm Workspaces </a>
</h3>
<p class="card-description">
"Isolated environments within Kasm for managing user groups or projects.
Separate configurations, secrets, and environments for each workspace.
Granular access control to manage who can do what within a workspace.
Dedicated resources like servers and containers specific to each workspace.
Think of them as separate floors in a building, each with its own resources and access control.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img
src="img/Kasm-1673718054458.avif"
alt=""
class="avatar rounded-circle"
/>
<span class="author">UNIX</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> GITHUB
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://github.com/kunalyadav19/Astra-Smart-Door-Lock"><img src="img/Circuit-diagram-of-home-automation.png" alt=""
class="img-fluid" /></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">IOT+Tasmota+Alexa</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://github.com/kunalyadav19/Astra-Smart-Door-Lock">iZea Home Automation by Astra (IOT)</a>
</h3>
<p class="card-description">
Flashes ESP devices (e.g.,Sonoff switches,ESP 32, ESP 8266.) for app or hub control.
Manages lights, fans, sensors remotely.
Automates tasks based on schedules or sensors (sunrise/sunset).
Open-source, community-driven, offering flexibility and customization.
Includes OTA updates for easy firmware upgrades without reflashing.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img src="img/c++.png" alt="" class="avatar rounded-circle" />
<span class="author">C++</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> GITHUB
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://github.com/kunalyadav19/Astra-Smart-Door-Lock"><img src="img/proxmox-ui-8.png" alt=""
class="img-fluid" /></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Docker</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://github.com/kunalyadav19/Astra-Smart-Door-Lock">Proxmox Virtual Environment</a>
</h3>
<p class="card-description">
Proxmox VE is the conductor, virtualizing your TrueNAS (network attached storage) and other VMs.
TrueNAS, a dedicated VM, acts as your data center, securely storing information.
Portainer, a container management tool, can be installed within a separate VM on Proxmox.
With Portainer, you can manage Docker containers across your VMs, even those running on TrueNAS (if it supports Docker).
This setup lets you virtualize storage (TrueNAS), run applications (VMs), and manage containers (Portainer) for a
flexible and centralized system.
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img src="img/proxmox_Logo.png" alt="" class="avatar rounded-circle" />
<span class="author">Bash(GRUB)</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> GITHUB
</div>
</div>
</div>
</div>
<!--/ Section Portfolio 3line/-->
</div>
</div>
</section>
<!--/ Section Portfolio End /-->
<!--/ Section Certification section Portfolio Start /-->
<section id="blog" class="blog-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">Certification</h3>
<p class="subtitle-a">
Some of My Learnings.
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://www.coursera.org/account/accomplishments/specialization/certificate/G57T6HYWAUSM"
><img src="img/Screenshot google auto Coursera Online Courses & Credentials .png" alt="" class="img-fluid"
/></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Coursera</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://www.coursera.org/account/accomplishments/specialization/certificate/G57T6HYWAUSM"> Aug 21, 2020 </a>
</h3>
<p class="card-description">
Google IT Automation with Python
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img
src="img/Google-G_360x360.avif"
alt=""
class="avatar rounded-circle"
/>
<span class="author">Google</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> Python
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://www.coursera.org/account/accomplishments/specialization/certificate/VRT4YR2DBNUY"
><img src="img/Screenshot c basics Coursera Online Courses & Credentials .png" alt="" class="img-fluid"
/></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Coursera</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://www.coursera.org/account/accomplishments/specialization/certificate/VRT4YR2DBNUY">Jul 21, 2020</a>
</h3>
<p class="card-description">
</p>Computational Thinking with Beginning C Programming
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img
src="img/cu-stand-alone_1_.avif"
alt=""
class="avatar rounded-circle"
/>
<span class="author">University of Colorado System</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> C
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://forage-uploads-prod.s3.amazonaws.com/completion-certificates/mastercard/vcKAB5yYAgvemepGQ_Mastercard_z7NQLaocAPamaYo3G_1725694618004_completion_certificate.pdf"
><img src="img/mastercard-intern.png" alt="" class="img-fluid"
/></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Forage</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://forage-uploads-prod.s3.amazonaws.com/completion-certificates/mastercard/vcKAB5yYAgvemepGQ_Mastercard_z7NQLaocAPamaYo3G_1725694618004_completion_certificate.pdf">Sept 7 ,
2024</a>
</h3>
<p class="card-description">
Mastercard - Cybersecurity Job Simulation
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img
src="img/Mastercard-logo.svg.png"
alt=""
class="avatar rounded-circle"
/>
<span class="author">MasterCard</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> INTERN
</div>
</div>
</div>
</div>
<!--/ Section Portfolio 2 line/-->
<div class="row">
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<a href="https://forage-uploads-prod.s3.amazonaws.com/completion-certificates/J.P.%20Morgan/R5iK7HMxJGBgaSbvk_J.P.%20Morgan_z7NQLaocAPamaYo3G_1719715711907_completion_certificate.pdf"><img
src="img/jpmorgan intern.png" alt="" class="img-fluid" /></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Forage</h6>
</div>
</div>
<h3 class="card-title">
<a href="https://forage-uploads-prod.s3.amazonaws.com/completion-certificates/J.P.%20Morgan/R5iK7HMxJGBgaSbvk_J.P.%20Morgan_z7NQLaocAPamaYo3G_1719715711907_completion_certificate.pdf"> June 30,
2024 </a>
</h3>
<p class="card-description">
J.P. Morgan - Software Engineering Job Simulation
</p>
</div>
<div class="card-footer">
<div class="post-author">
<a href="#">
<img src="img/JP-Morgan-Chase-Logo.png" alt="" class="avatar rounded-circle" />
<span class="author">J.P. Morgan</span>
</a>
</div>
<div class="post-date">
<span class="ion-code-working"></span> INTERN
</div>
</div>
</div>
</div>
<!--/ Section Portfolio 3line/-->
</section>
<!--/ Section Certification section End /-->
<!--/ Section Testimonials Star /-->
<div
class="testimonials paralax-mf bg-image"
style="background-image: url(img/work\ app.gif)"
>
<div class="overlay-mf"></div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="testimonial-mf" class="owl-carousel owl-theme">
<div class="testimonial-box">
<div class="author-test">
<img
src="img/"
alt=""
class="img-fluid rounded b-shadow-a"
/>
<span class="author">Why Code !</span>
</div>
<div class="content-test">
<p class="description lead">
As a tech enthusiast who views coding as the ultimate superpower, unlocking limitless possibilities in the digital realm. I thrive on the belief that lines of code have the potential to shape the future and bring about meaningful change. With an insatiable curiosity for emerging technologies, I am on a mission to harness the true potential of this digital superpower, contributing to innovation and making a positive impact in the ever-evolving landscape of technology.
</p>
<span class="comit"><i class="fa fa-quote-right"></i></span>
</div>
</div>
<div class="testimonial-box">
<div class="author-test">
<img
src="img/"
alt=""
class="rounded-circle b-shadow-a"
/>
<span class="author">Work Approach</span>
</div>
<div class="content-test">
<p class="description lead">
I approach my work with unwavering passion, recognizing it as a driving force to cultivate genuine interest. I firmly believe that passion fuels excellence, and by immersing myself wholeheartedly, I not only develop a profound interest but also deliver work of unparalleled quality. Embracing a minimalistic approach, I prioritize simplicity and efficiency, ensuring that every aspect of my work resonates with a refined and impactful essence. In the realm of quality work, my commitment to a minimalistic mindset becomes a guiding principle, allowing me to create solutions that are not only effective but also elegantly streamlined.
</p>
<span class="comit"><i class="fa fa-quote-right"></i></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/ Section Blog Start /-->
<!--/ Section Blog End /-->
<!--/ Section Contact-Footer Star /-->
<section
class="paralax-mf footer-paralax bg-image sect-mt4 route"