-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1652 lines (1562 loc) · 64.5 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>Saad Ahmed</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<!-- Favicons -->
<link href="assets/img/favicon.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=Poppins: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=Raleway: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&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: iPortfolio
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body class="index-page">
<!-- Header Start -->
<header id="header" class="header dark-background d-flex flex-column">
<i class="header-toggle d-xl-none bi bi-list"></i>
<!-- Profile Picture -->
<div class="profile-img">
<img
src="assets/img/my-profile-img.jpg"
alt=""
class="img-fluid rounded-circle"
/>
</div>
<!-- logo beside name below main profile pic -->
<a
href="index.html"
class="logo d-flex align-items-center justify-content-center"
>
<!-- Uncomment the line below if you also wish to use an image logo -->
<img src="assets/img/logo.png" alt="" />
<h1 class="sitename">Saad Ahmed</h1>
</a>
<!-- ICONS below PIC -->
<div class="social-links text-center">
<a
href="https://www.facebook.com/saadahmed42437"
target="_blank"
class="facebook"
><i class="bi bi-facebook"></i
></a>
<a
href="https://www.instagram.com/sleeping_serpent/"
target="_blank"
class="instagram"
><i class="bi bi-instagram"></i
></a>
<a
href="https://github.com/Sleeping-Serpent"
target="_blank"
class="google-plus"
><i class="bi bi-github"></i
></a>
<a
href="https://www.linkedin.com/feed/"
target="_blank"
class="linkedin"
><i class="bi bi-linkedin"></i
></a>
</div>
<!-- Nav Bar left sode menu -->
<nav id="navmenu" class="navmenu">
<ul>
<li>
<a href="#hero" class="active"
><i class="bi bi-house navicon"></i>Home</a
>
</li>
<li>
<a href="#about"><i class="bi bi-person navicon"></i> About</a>
</li>
<li>
<a href="#resume"
><i class="bi bi-file-earmark-text navicon"></i> Resume</a
>
</li>
<li>
<!-- Linke be added when working on the section -->
<a href="#certification"
><i class="bi bi-images navicon"></i> Certification</a
>
</li>
<!-- <li>
<a href="#portfolio"
><i class="bi bi-images navicon"></i> Portfolio</a
>
</li> -->
<li>
<a href="#services"
><i class="bi bi-hdd-stack navicon"></i> Services</a
>
</li>
<!-- drop down mene with sub parts -->
<!-- may be used latter -->
<!-- <li class="dropdown">
<a href="#"
><i class="bi bi-menu-button navicon"></i> <span>Dropdown</span>
<i class="bi bi-chevron-down toggle-dropdown"></i
></a>
<ul>
<li><a href="#">Dropdown 1</a></li>
<li class="dropdown">
<a href="#"
><span>Deep Dropdown</span>
<i class="bi bi-chevron-down toggle-dropdown"></i
></a>
<ul>
<li><a href="#">Deep Dropdown 1</a></li>
<li><a href="#">Deep Dropdown 2</a></li>
<li><a href="#">Deep Dropdown 3</a></li>
<li><a href="#">Deep Dropdown 4</a></li>
<li><a href="#">Deep Dropdown 5</a></li>
</ul>
</li>
<li><a href="#">Dropdown 2</a></li>
<li><a href="#">Dropdown 3</a></li>
<li><a href="#">Dropdown 4</a></li>
</ul>
</li> -->
<li>
<a href="#contact"
><i class="bi bi-envelope navicon"></i> Contact</a
>
</li>
</ul>
</nav>
</header>
<!-- Header End -->
<main class="main">
<!-- Hero Section -->
<section id="hero" class="hero section dark-background">
<img src="assets/img/hero-bg.jpg" alt="" data-aos="fade-in" class="" />
<div class="container" data-aos="fade-up" data-aos-delay="100">
<h2>Saad Ahmed</h2>
<p>
I'm a
<span
class="typed"
data-typed-items="Dot Net Developer,Web Developer, Freelancer "
></span
><span
class="typed-cursor typed-cursor--blink"
aria-hidden="true"
></span
><span
class="typed-cursor typed-cursor--blink"
aria-hidden="true"
></span>
</p>
</div>
</section>
<!-- /Hero Section -->
<!-- About Section -->
<section id="about" class="about section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>About Me</h2>
<p >
My name is <b>Saad Ahmed</b> , and I'm a dynamic individual with a wide range of interests. As a foodie, I love exploring and enjoying a variety of foods from different cultures and cuisines. My culinary adventures take me to diverse eateries and kitchens, where I delight in trying new dishes and flavors.
<br>
<br>
Beyond my love for food, I'm a dedicated weeb, passionate about the world of anime and manga. I immerse myself in the latest series, stories, and characters, connecting with a vibrant community of fellow enthusiasts
<br>
<br>
I'm also a tech enthusiast, staying updated with the latest advancements and innovations in technology. I enjoy exploring new gadgets, software, and tech trends, making me well-versed in the ever-evolving tech landscape.
<br>
<br>
Overall, my unique blend of interests in food, anime, and technology makes me a fascinating and well-rounded individual.
</p>
</div>
<!-- End Section Title -->
<div class="container sec-test" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4 justify-content-center">
<div class="col-lg-4">
<img
src="assets/img/my-profile-img.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="col-lg-8 content secTest" >
<h2>Dot net Developer .</h2>
<!-- <p class="fst-italic py-3">
Test text above info
</p> -->
<br>
<div class="row">
<div class="col-lg-6">
<ul>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Birthday:</strong> <span>12 Feb 1999</span>
</li>
<!-- <li>
<i class="bi bi-chevron-right"></i>
<strong>Website:</strong> <span>www.example.com</span>
</li> -->
<li>
<i class="bi bi-chevron-right"></i>
<strong>Phone:</strong> <span>+92 320 6092501</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>City:</strong> <span>Lahore, Pakistan</span>
</li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li>
<i class="bi bi-chevron-right"></i> <strong>Age:</strong>
<span>25</span>
</li>
<!-- <li>
<i class="bi bi-chevron-right"></i>
<strong>Degree:</strong> <span>BSCS</span>
</li> -->
<li>
<i class="bi bi-chevron-right"></i>
<strong>Email:</strong> <span>ahmed.saad.18.263@gmail.com</span>
</li>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Freelance:</strong> <span>Available</span>
</li>
</ul>
</div>
</div>
<p class="py-3">
When people blindly follow the truth remember nothing is true
<br>
When people are bounded by law and morality remember everything is permitted
<br>
We live in darkness ti serve the light
<br>
We are the hidden ones
</p>
</div>
</div>
</div>
</section>
<!-- /About Section -->
<!-- Stats Section -->
<section id="stats" class="stats section">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4">
<div class="col-lg-3 col-md-6">
<div class="stats-item">
<i class="bi bi-emoji-smile"></i>
<span
data-purecounter-start="0"
data-purecounter-end="2"
data-purecounter-duration="1"
class="purecounter"
></span>
<p>
<strong>Happy Clients</strong> <span></span>
</p>
</div>
</div>
<!-- End Stats Item -->
<div class="col-lg-3 col-md-6">
<div class="stats-item">
<i class="bi bi-journal-richtext"></i>
<span
data-purecounter-start="0"
data-purecounter-end="21"
data-purecounter-duration="1"
class="purecounter"
></span>
<p>
<strong>Projects</strong>
<span></span>
</p>
</div>
</div>
<!-- End Stats Item -->
<div class="col-lg-3 col-md-6">
<div class="stats-item">
<i class="bi bi-headset"></i>
<span
data-purecounter-start="0"
data-purecounter-end="1453"
data-purecounter-duration="1"
class="purecounter"
></span>
<p>
<strong>Hours Of Support</strong>
<span></span>
</p>
</div>
</div>
<!-- End Stats Item -->
<div class="col-lg-3 col-md-6">
<div class="stats-item">
<i class="bi bi-people"></i>
<span
data-purecounter-start="0"
data-purecounter-end="1"
data-purecounter-duration="1"
class="purecounter"
></span>
<p>
<strong>Hard Workers</strong>
<span></span>
</p>
</div>
</div>
<!-- End Stats Item -->
</div>
</div>
</section>
<!-- /Stats Section -->
<!-- Skills Section -->
<section id="skills" class="skills section light-background">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Professional skills</h2>
<h4>
Below is the summary of the skills that i acqure by working in the filed
</h4>
</div>
<!-- End Section Title -->
<div><h4 style="margin-left: 15px;">Programming Languages</h4></div>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row skills-content skills-animation">
<div class="col-lg-6">
<!-- sds -->
<div class="progress">
<span class="skill"
><span>C#</span> <i class="val">90%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill"
><span>JAVA</span> <i class="val">90%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
</div>
<br>
<div><h4 style="margin-left: 15px;">Web development</h4></div>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row skills-content skills-animation">
<div class="col-lg-6">
<!-- sds -->
<div class="progress">
<span class="skill"
><span>HTML</span> <i class="val">80%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="80"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
><span>CSS</span> <i class="val">75%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="75"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
><span>Bootstrap</span> <i class="val">75%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="75"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill"
><span>JacaScript</span> <i class="val">70%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="70"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
><span>JQuary</span> <i class="val">67%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="67"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
><span>Ajax</span> <i class="val">60%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="60"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
</div>
<br>
<div><h4 style="margin-left: 15px;">Framwork</h4></div>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row skills-content skills-animation">
<div class="col-lg-9">
<!-- sds -->
<div class="progress">
<span class="skill"
><span>Dot Net</span> <i class="val">78%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="78"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
</div>
<br>
<div><h4 style="margin-left: 15px;">DataBase</h4></div>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row skills-content skills-animation">
<div class="col-lg-9">
<!-- sds -->
<div class="progress">
<span class="skill"
><span>SQL Server Management Studio</span> <i class="val">80%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="80"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
</div>
<br>
<div><h4 style="margin-left: 15px;">Development Tool</h4></div>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row skills-content skills-animation">
<div class="col-lg-6">
<!-- sds -->
<div class="progress">
<span class="skill"
><span>Visval Studio</span> <i class="val">90%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
><span>VS Code</span> <i class="val">90%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
><span>Intallij</span> <i class="val">90%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill"
><span>Git</span> <i class="val">90%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
><span>github</span> <i class="val">90%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
</div>
<br>
<div><h4 style="margin-left: 15px;">Personal Development</h4></div>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row skills-content skills-animation">
<div class="col-lg-9">
<!-- sds -->
<div class="progress">
<span class="skill"
><span>Temm Work</span> <i class="val">90%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
><span>Time Management</span> <i class="val">90%</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="90"
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>
<p>
As a skilled Software Engineer with hands-on experience, I am seeking a challenging role in a fast-paced, dynamic environment. With a strong background in programming, web technologies, and frameworks, I am eager to contribute to the creation of cutting-edge software solutions. My blend of technical expertise, problem-solving abilities, and strong communication skills makes me a valuable contributor to any development team.
</p>
</div>
<!-- End Section Title -->
<div class="container">
<div class="row">
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<!-- Edn Resume Item -->
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Bachelors of Science & Computer Science</h4>
<h4>2018 - 2022</h4>
<p><h6>Government College University, Lahore</h6></p>
<p>
<ul>
<li>Work on multipal semester Projects</li>
<li>Participated in a educatioal trip to a Software House</li>
<li>Participated in a event organize to demonstrate Final Year Projects</li>
<li>Represented my University in a Coding compitation hold at Tkxel</li>
<li>Defended by Fianl Year project successfully</li>
</ul>
</p>
</div>
<!-- Edn Resume Item -->
<div class="resume-item">
<h4>Intermediate & (ICS-Phy)</h4>
<h4>2016 - 2018</h4>
<p><h6>Govt. Islamia College Civil Lines, Lahore</h6></p>
<p>
<ul>
<li>Participated in multiple co-curricular activited</li>
<li>Work on mutiple Lab Expariments</li>
</ul>
</p>
</div>
<div class="resume-item">
<h4>Matriculation & (Computer Science)</h4>
<h5>january 2023 - March 2023</h5>
<p><h6>Lahore Progressive High School, Lahore</h6></p>
<p>
<ul>
<li>Participated in multiple co-curricular activited</li>
<li>Actived particiment of speech compitations</li>
<li>Was awarded the student of the year award</li>
</ul>
</p>
</div>
<!-- Edn Resume Item -->
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="200">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<h4>Arcana Info </h4>
<h5>March 2023 - October 2023</h5>
<p><h4>Jr. Software Engineer (Support)</h4></p>
<ul>
<li>
Provide support on the project at the client site at Allied Bank Head Office
</li>
<li>
Manage EPM reports
</li>
<li>
Actively contributed to diverse client-side tasks
</li>
<li>
Proficiently acquired foundational skills in the .Net framework.
</li>
<li>
Gained hands-on experience in JavaScript, specializing in jQuery and Ajax
</li>
<li>
Enhanced technical aptitude and creative problem-solving abilities
</li>
<li>
Assimilated knowledge about professional work environments and corporate culture
</li>
</ul>
</div>
<!-- Edn Resume Item -->
<div class="resume-item">
<h4>Devsinc</h4>
<h5>march 2022 - jun 2022</h5>
<p><h4>Ruby on rails intern</h4></p>
<ul>
<li>
Gained proficiency in Ruby on Rails under the mentorship of a senior developer
</li>
<li>
Utilized development tools such as Git and VS Code.
</li>
<li>
Acquired professional work environment skills and corporate culture insights.
</li>
<li>
Contributed to the "Weatherman" project, applying practical knowledge of Ruby on Rails
</li>
</ul>
</div>
<!-- Edn Resume Item -->
<div class="resume-item">
<h4>freelancer</h4>
<h5>December 2023 - present</h5>
<p><h4>Freelancer </h4></p>
<ul>
<li>Creating Professional Resumes </li>
<li>Helping in a family Businese in its Management</li>
<li>.....</li>
</ul>
</div>
<!-- Edn Resume Item -->
</div>
</div>
</div>
</section>
<!-- /Resume Section -->
<!-- certification Section -->
<section id="certification" class="portfolio section light-background">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Certification</h2>
<p>
Below are some of the certifications I have earned. Click on any
certificate to zoom in and view the details.
</p>
</div>
<!-- End Section Title -->
<div class="container">
<div class="isotope-layout" data-default-filter="*" data-layout="masonry" data-sort="original-order">
<div class="row gy-4 isotope-container" data-aos="fade-up" data-aos-delay="200">
<!-- Certificate 1 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/2021 Python Programming From A -Z Beginner To Expert Course.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/2021 Python Programming From A -Z Beginner To Expert Course.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 1 -->
<!-- Certificate 2 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Become a Node.js developer.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Become a Node.js developer.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 2 -->
<!-- Certificate 3 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Become A Web Designer - HTML & CSS for Biginners.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Become A Web Designer - HTML & CSS for Biginners.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 3 -->
<!-- Certificate 4 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Boost Your Creativity Today-SOUZOU.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Boost Your Creativity Today-SOUZOU.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 4 -->
<!-- Certificate 5 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Bootstrap 4 Ultimate Course.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Bootstrap 4 Ultimate Course.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 5 -->
<!-- Certificate 6 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Complete JAvascript & jQuery Course with with Bonuys Vue JS Intro.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Complete JAvascript & jQuery Course with with Bonuys Vue JS Intro.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 6 -->
<!-- Certificate 7 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Git and Github.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Git and Github.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 7 -->
<!-- Certificate 8 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/How to Deal with Tough Times Problem Solving Skills.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/How to Deal with Tough Times Problem Solving Skills.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 8 -->
<!-- Certificate 9 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Java Training Complete Course 2022.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Java Training Complete Course 2022.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 9 -->
<!-- Certificate 10 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Learn JavaScript - For Beginners.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Learn JavaScript - For Beginners.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 10 -->
<!-- Certificate 11 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Managing People from Different Cultures.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Managing People from Different Cultures.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 11 -->
<!-- Certificate 12 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/PHP for Beginners PHP Crash Course .jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/PHP for Beginners PHP Crash Course .jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 12-->
<!-- Certificate 13 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Public Speaking - The Way to Give Presentations Without Fear.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Public Speaking - The Way to Give Presentations Without Fear.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 13 -->
<!-- Certificate 14 -->
<div class="col-lg-4 col-md-6 portfolio-item isotope-item">
<div class="portfolio-content h-100">
<img src="assets/Cirtification Directery/Self Confidence & Self Esteem Confidence Via Self-Awareness.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<a href="assets/Cirtification Directery/Self Confidence & Self Esteem Confidence Via Self-Awareness.jpg" data-gallery="certificate-gallery" class="glightbox preview-link">
<i class="bi bi-zoom-in"></i>
</a>
</div>
</div>
</div>
<!-- End Certificate 14 -->