-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1081 lines (1068 loc) · 71.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" xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0Z37V1XHEP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-0Z37V1XHEP');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://deepam-aggarwal.github.io/CV/DA.jpg" type="image/icon type">
<link rel="stylesheet" href="src\css\Style1.css">
<link rel="stylesheet" href="src\css\Style2.css">
<link rel="stylesheet" href="src\css\Style3.css">
<link rel="stylesheet" href="src\css\Style4.css">
<link rel="stylesheet" href="src\css\Style5.css">
<link rel="stylesheet" href="src\css\bootstrap.css">
<link rel="stylesheet" href="src\css\bootstrap.min.css">
<link rel="stylesheet" href="src\css\plugin.css">
<link rel="stylesheet" href="src\css\owl.carousel.min.css">
<link rel="stylesheet" href="https://s.pageclip.co/v1/pageclip.css" media="screen">
<title>DEEPAM PORTFOLIO</title>
</head>
<body style="scroll-behavior: smooth">
<div id="preloader">
<div id="loader"></div>
</div>
<nav class="navbar navbar-expand-lg" style="position:fixed">
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="ion-android-menu"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent" style="justify-content: center">
<ul class="navbar-nav">
<li class="dropdown">
<a class=" nav-link" href="https://deepam-aggarwal.github.io/Deepam-Portfolio">HOME</a>
</li>
<li class="dropdown">
<a class="nav-link" href="#aboutme">ABOUT</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle nav-link " href="#" data-toggle="dropdown">EXPERIENCE</a>
<div class="dropdown-menu">
<ul>
<li><a class="dropdown-item nav-link nav_item" href="#workexperience"> WORK EXPERIENCE </a></li>
<li>
<a class="dropdown-item nav-link nav_item " href="#volunteer">
VOLUNTEER EXPERIENCE
</a>
</li>
</ul>
</div>
</li>
<li class="dropdown">
<a class=" nav-link" href="#education">EDUCATION</a>
</li>
<!---<li class="dropdown">
<a class=" nav-link" href="#lc">LICENSE AND CERTIFICATIONS</a>
</li>-->
<li class="dropdown">
<a class=" nav-link" href="#skills">SKILLS</a>
</li>
<li class="dropdown">
<a class=" nav-link" href="#portfolio">PORTFOLIO</a>
</li>
<li class="dropdown">
<a class=" nav-link" href="#contact">CONTACT</a>
</li>
</ul>
</div>
</nav>
<div class="lmpixels-arrows-nav1">
<div class="lmpixels-arrow-right"><i class="lnr lnr-chevron-right"></i></div>
<div class="lmpixels-arrow-left"><i class="lnr lnr-chevron-left"></i></div>
</div>
<section class="hero">
<img class="sm-logo animation" data-animation="fadeInUp" data-animation-delay="1.5s" src="assets/DA.png" alt="logo" />
<div class="hero-content">
<h1 class="hero-title">
Discover My World
</h1>
<h2 class="hero-subtitle">
Let's discover about my background!
</h2>
<button type="button" class="hero-button" onclick="location.href='#aboutme'">
Discover »
</button>
</div>
</section>
<section class="banner_section p-0 full_screen">
<section id="aboutme" style=" background: linear-gradient(#003153, #4e6c86);">
<div class="container ">
<div class="row justify-content-center">
<div class="col-md-12">
<div class="text-center animation" data-animation="fadeInUp" data-animation-delay="0.01s">
<div class="heading_s1 text-center">
<h1 class="textc" style="color: #fff; ">About Me</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-lg-6 col-sm-9 animation" data-animation="fadeInLeft"
data-animation-delay="0.03s" style="vertical-align: middle;">
<p style="color: #fff;">
<br /><br />
<span class="greeting">HELLO</span><br /><br />
<b>
<span style="font-family: 'Josefin Sans', sans-serif; font-size:26px">I'M DEEPAM AGGARWAL</span><br /><br />
<span style="font-family: 'Josefin Sans', sans-serif;font-size:18px "> I DO</span> <span style="font-family: 'Josefin Sans', sans-serif; font-size:21px " class="txt-rotate" data-period="2000" data-rotate='[ "WEB DESIGN", "WEB DEVELOPMENT", "GRAPHIC DESIGNING"]'></span>
</b>
<br /><br />Deepam is a curious individual with a passion for researching and finding solutions. He completed his Bachelor of Computer Applications from the Institute of Innovation in Technology and Management, affiliated with Guru Gobind Singh University, in 2022. Currently, he is working at Deloitte. Deepam is known for being friendly, a team player, and a dedicated professional.<br /><br />
He possesses knowledge across various domains, including web development, web designing, coding, marketing, and healthcare. He holds a Micro Certificate in ServiceNow and certifications in Google Analytics. Deepam is always open to new opportunities, networking, and knowledge sharing.<br /><br />
</p>
<div class="card1">
<a href="https://github.com/Deepam-Aggarwal" aria-label="opens github profile"><i class="fa-brands fa-github fa-beat"></i></a>
<a href="https://www.linkedin.com/in/deepam-aggarwal-5b22b51a5/" aria-label="opens linkedin profile"><i class="fa-brands fa-linkedin-in fa-beat"></i></a>
<a href="https://learn.microsoft.com/en-in/users/deepamaggarwal" aria-label="opens microsoft learn profile"><i class="fa-brands fa-microsoft fa-beat"></i></a>
<a href="https://g.dev/Deepam-Aggarwal" aria-label="opens google devloper profile"><i class="fa-brands fa-google fa-beat"></i></a>
<a href="https://www.credly.com/users/deepam-aggarwal" aria-label="opens credly profile"><i class="fa-solid fa-certificate fa-beat"></i></a>
<a href="https://drive.google.com/drive/folders/1KbQBG2zYMdw85v5dL92vr2Hr27JURHbM?usp=sharing" aria-label="opens certificates folder on google drive"><i class="fa-solid fa-trophy fa-beat"></i></a>
</div>
<button type="button" class="hero-button" download="https://drive.google.com/file/d/1lhEaG4cT7ucD4n4uch4X2RGKbm-tiud_/view?usp=sharing" onclick="location.href='https://drive.google.com/file/d/1lhEaG4cT7ucD4n4uch4X2RGKbm-tiud_/view?usp=sharing'">
Here's My CV »
</button>
</div>
<div class="col-md-4 col-lg-6 col-sm-9">
<div class="dept animation" data-animation="fadeInRight" data-animation-delay="0.03s">
<img src="assets/personal.jpeg" alt="Personal photo" title="Personal photo"
style="border-radius: 10%; width:100%; height: 100%;" />
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section id="education" style=" background: linear-gradient( #003153, #4e6c86);">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12">
<div class="text-center animation" data-animation="fadeInUp" data-animation-delay="0.01s">
<div class="heading_s1 text-center">
<h1 class="textc" style="color: #fff;">
Education
</h1>
</div>
</div>
<div class="row">
<div class="tcol-lg-6 animation" data-animation="fadeInLeft"
data-animation-delay="0.03s">
<div class="tablescroll" aria-labelledby="n" role="region" tabindex="0">
<table style=" background-color: rgba(0, 0, 0, 0.5);">
<caption id="n"><cite>Educational Qualifications Table</cite></caption>
<thead>
<tr>
<th scope="col">Instiute</th>
<th scope="col">Course</th>
<th scope="col">Year</th>
<th scope="col">Grades(CGPA)</th>
<th scope="col">Academic Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>Institute of Innovation in Technology & Management</td>
<td>Bachelor of Computer Application (BCA)</td>
<td>2019-2022</td>
<td>9.02</td>
<td>
<ul style="list-style-type:none">
<li>Completed training in Machine Learning and Artificial Intelligence.</li>
<li>Secured second place in the Techtonics 2021 coding competition at our college tech fest.</li>
</ul>
</td>
</tr>
<tr>
<td>Ramjas School</td>
<td>Physics-Chemistry-Maths-Sociology-English-Computer Science</td>
<td>2018-2019</td>
<td>06.4</td>
<td>
<ul style="list-style-type:none">
<li>Participated in science and math symposiums with my team.</li>
<li>Engaged in a rally to raise awareness about pollution.</li>
<li>Created presentations and project files for symposiums and school work.</li>
<li>Developed small games and graphs on the topic of "Probability" using GeoGebra.</li>
<li>Managed and developed content for a Cyber Awareness campaign held at school.</li>
</ul>
</td>
</tr>
<tr>
<td>Ramjas School</td>
<td>English-Science-Maths-Social Science-Spanish</td>
<td>2016-2017</td>
<td>07.8</td>
<td>--</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-md-4 col-lg-6 col-sm-9 animation" data-animation="fadeInRight"
data-animation-delay="0.03s">
<div id="carouselExampleFade" class=" carousel" data-ride="carousel">
<div class="carousel-inner">
<img class="carousel-item active background_bg" src="assets/image-1.jpg" alt="cyber awarness workshop" title="Cyber Awarness Workshop">
<img class="carousel-item background_bg" src="assets/image-2.jpg" alt="don't bully anyone on internet" title="Don't Bully Anyone on Internet">
<img class="carousel-item background_bg" src="assets/image-3.jpg" alt="group photo" title="Group Photo">
<img class="carousel-item background_bg" src="assets/image-4.jpg" alt="workshop" title="Workshop">
<img class="carousel-item background_bg" src="assets/image-5.png" alt="code" title="Coding Ability">
<img class="carousel-item background_bg" src="assets/image-6.png" alt="github" title="Stats">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="workexperience" style=" background: linear-gradient( #003153, #4e6c86);" class="about-area section-padding section-bg">
<div class="container ">
<div class="row justify-content-center">
<div class="col-md-12">
<div class="text-center animation" data-animation="fadeInUp" data-animation-delay="0.01s">
<div class="heading_s1 text-center">
<h1 class="textc" style="color: #fff; ">Experience</h1>
</div>
</div>
<div class="tcol-lg-6 animation" data-animation="fadeInLeft"
data-animation-delay="0.03s" style="vertical-align: middle;">
<div id="eduandex" class="eduandex">
<div class="row">
<div class="col-lg-6">
<div class="edu-box">
<div class="row">
<div class="col-12">
<div class="education-list">
<div class="single-education">
<h4 class="collage-name" style="color:white">
Deloitte
</h4>
<p class="degree">
Associate Analyst <span class="year">16 August 2022 - Present</span>
</p>
<div class="description" style="color:white">
<ul>
<li>Serving as a Microservice Developer on a healthcare project</li>
<li>Overseeing various services and their associated data flows</li>
<li>Conducting JUnit testing and performance evaluations</li>
<li>Addressing incidents related to data discrepancies, including data mismatches, non-transference, absence as well as updating logic to meet evolving requirements</li>
<li>Enhancing microservices to improve scalability and durability, as well as incorporating new requirements</li>
</ul>
</div>
</div>
<div class="single-education">
<h4 class="collage-name" style="color:white">
Internshala
</h4>
<p class="degree">
Internshala Student Partner <span class="year">12 March 2020 - 15 May 2020</span>
</p>
<div class="description" style="color:white">
<ul>
<li>Increased user engagement on the Internshala app by 50 participants within a month</li>
<li>Boosted registration on the Internshala website by 20%</li>
<li>Conducted workshops with over 20 participants</li>
</ul>
</div>
</div>
<div class="single-education">
<h4 class="collage-name" style="color:white">
Vellore Institute of Technology
</h4>
<p class="degree">
Campus Ambassador
<span class="year">20 December 2019 - 31 January 2020</span>
</p>
<div class="description" style="color:white">
<ul>
<li>Promoted social media handles</li>
<li>Increased follower count</li>
<li>Enhanced participation in competitions</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="volunteer" style=" background: linear-gradient( #003153, #4e6c86);" class="about-area section-padding section-bg">
<div class="container ">
<div class="row justify-content-center">
<div class="col-md-12">
<div class="text-center animation" data-animation="fadeInUp" data-animation-delay="0.01s">
<div class="heading_s1 text-center">
<h1 class="textc" style="color: #fff; ">Volunteer Experience</h1>
</div>
</div>
<div class="tcol-lg-6 animation" data-animation="fadeInLeft"
data-animation-delay="0.03s" style="vertical-align: middle;">
<div id="eduandex" class="eduandex">
<div class="row">
<div class="col-lg-6">
<div class="edu-box">
<div class="row">
<div class="col-12">
<div class="education-list">
<div class="single-education">
<h4 class="collage-name" style="color:white">
Harvard University
</h4>
<p class="degree">
CS50 Seminar Python Mentor <span class="year">16 January 2021–6 February 2021</span>
</p>
<div class="description" style="color:white">
<ul>
<li>Addressing platform-related queries.</li>
<li> Responding to CS50 course-related inquiries.</li>
<li> Managing seminar-related questions.</li>
<li> Assisting students with homework and clearing their doubts.</li>
</ul>
</div>
</div>
<div class="single-education">
<h4 class="collage-name" style="color:white">
Harvard University
</h4>
<p class="degree">
CS50 Seminar SQL Mentor
<span class="year">16 January 2021–6 February 2021</span>
</p>
<div class="description" style="color:white">
<ul>
<li>Addressing platform-related queries.</li>
<li> Responding to CS50 course-related inquiries.</li>
<li> Managing seminar-related questions.</li>
<li> Assisting students with homework and clearing their doubts.</li>
</ul>
</div>
</div>
<div class="single-education">
<h4 class="collage-name" style="color:white">
Harvard University
</h4>
<p class="degree">
CS50 Seminar Linux Mentor
<span class="year">16 January 2021–6 February 2021</span>
</p>
<div class="description" style="color:white">
<ul>
<li>Addressing platform-related queries.</li>
<li> Responding to CS50 course-related inquiries.</li>
<li> Managing seminar-related questions.</li>
<li> Assisting students with homework and clearing their doubts.</li>
</ul>
</div>
</div>
<div class="single-education">
<h4 class="collage-name" style="color:white">
Harvard University
</h4>
<p class="degree">
CS50 Seminar Game Development Mentor
<span class="year">16 January 2021–6 February 2021</span>
</p>
<div class="description" style="color:white">
<ul>
<li>Addressing platform-related queries.</li>
<li> Responding to CS50 course-related inquiries.</li>
<li> Managing seminar-related questions.</li>
<li> Assisting students with homework and clearing their doubts.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="skills" style=" background: linear-gradient( #003153, #4e6c86);" class="about-area section-padding section-bg">
<div class="container ">
<div class="row justify-content-center">
<div class="col-md-12">
<div class="text-center animation" data-animation="fadeInUp" data-animation-delay="0.01s">
<div class="heading_s1 text-center">
<h1 class="textc" style="color: #fff; ">Skills</h1>
</div>
</div>
<div class="tcol-lg-6 animation" data-animation="fadeInLeft"
data-animation-delay="0.03s" style="vertical-align: middle;">
<div class="container">
<marquee behavior="scroll">
<img alt="HTML5" src="https://img.shields.io/badge/html5%20-%23E34F26.svg?&style=for-the-badge&logo=html5&logoColor=white" />
<img alt="CSS3" src="https://img.shields.io/badge/css3%20-%231572B6.svg?&style=for-the-badge&logo=css3&logoColor=white" />
<!--<img alt="Bootstrap" src="https://img.shields.io/badge/bootstrap%20-%23563D7C.svg?&style=for-the-badge&logo=bootstrap&logoColor=white"/>-->
<img alt="C" src="https://img.shields.io/badge/c%20-%2300599C.svg?&style=for-the-badge&logo=c&logoColor=white" />
<img alt="Python" src="https://img.shields.io/badge/python%20-%2314354C.svg?&style=for-the-badge&logo=python&logoColor=white" />
<img alt="JavaScript" src="https://img.shields.io/badge/javascript%20-%23323330.svg?&style=for-the-badge&logo=javascript&logoColor=%23F7DF1E" />
<img alt="Java" src="https://img.shields.io/badge/-JAVA-orange?logo=java&logoColor=black&style=for-the-badge" />
<img alt="C++" src="https://img.shields.io/badge/c++%20-%2300599C.svg?&style=for-the-badge&logo=c%2B%2B&ogoColor=white" />
<!--<img alt="React" src="https://img.shields.io/badge/react%20-%2320232a.svg?&style=for-the-badge&logo=react&logoColor=%2361DAFB"/>
<img alt="NodeJS" src="https://img.shields.io/badge/node.js%20-%2343853D.svg?&style=for-the-badge&logo=node.js&logoColor=white"/>
<img alt="Git" src="https://img.shields.io/badge/git%20-%23F05033.svg?&style=for-the-badge&logo=git&logoColor=white"/>-->
<img alt="GitHub" src="https://img.shields.io/badge/github%20-%23121011.svg?&style=for-the-badge&logo=github&logoColor=white" />
<img alt="WordPress" src="https://img.shields.io/badge/WordPress%20-%23117AC9.svg?&style=for-the-badge&logo=WordPress&logoColor=white" />
<img alt="MongoDB" src="https://img.shields.io/badge/MongoDB-%234ea94b.svg?&style=for-the-badge&logo=mongodb&logoColor=white" />
</marquee>
</div><br />
<div id="eduandex" class="eduandex">
<div class="container">
<div class="row skill-area" id="statisticsSection">
<div class="col-lg-6 skill-area-line">
<div class="skill-box">
<h4 class="title">
Coding Skills
</h4>
<div class="skill-list">
<div class="single-skill">
<div class="label">
<span>HTML</span>
<span>100%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%"></div>
</div>
</div>
<div class="single-skill">
<div class="label">
<span>CSS</span>
<span>90%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" style="width: 90%"></div>
</div>
</div>
<div class="single-skill">
<div class="label">
<span>C</span>
<span>80%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%"></div>
</div>
</div>
<div class="single-skill">
<div class="label">
<span>C++</span>
<span>80%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%"></div>
</div>
</div>
<div class="single-skill">
<div class="label">
<span>GITHUB</span>
<span>75%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%"></div>
</div>
</div>
<div class="single-skill">
<div class="label">
<span>JS</span>
<span>50%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%"></div>
</div>
</div>
<div class="single-skill">
<div class="label">
<span>JAVA</span>
<span>50%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%"></div>
</div>
</div>
<div class="single-skill">
<div class="label">
<span>PYTHON</span>
<span>50%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 skill-area-line">
<div class="skill-box">
<h4 class="title">
Language Skills
</h4>
<div class="skill-list">
<div class="single-skill">
<div class="label">
<span>Hindi</span>
<span>92%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="92" aria-valuemin="0" aria-valuemax="100" style="width: 92%"></div>
</div>
</div>
<div class="single-skill">
</div>
<div class="single-skill">
<div class="label">
<span>Spanish</span>
<span>20%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"></div>
</div>
</div>
<div class="single-skill">
<div class="label">
<span>English</span>
<span>99%</span>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="99" aria-valuemin="0" aria-valuemax="100" style="width: 99%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 skill-area-circle">
<div class="skill-box">
<h4 class="title">
Professional Skills
</h4>
<div class="skill-list">
<div class="single-skill">
<div class="progress-circle position" data-percent="50" data-duration="1000"
data-color="#e9ecef, 304CFD"></div>
<div class="label mt-1 d-block text-center">
<span>Web Design</span>
</div>
</div>
<div class="single-skill">
<div class="progress-circle position" data-percent="90" data-duration="1000"
data-color="#e9ecef, 304CFD"></div>
<div class="label mt-1 d-block text-center">
<span>Web Devlopment</span>
</div>
</div>
<div class="single-skill">
<div class="progress-circle position" data-percent="30" data-duration="1000"
data-color="#e9ecef, 304CFD"></div>
<div class="label mt-1 d-block text-center">
<span>Graphic Design</span>
</div>
</div>
<!-- <div class="single-skill">
<div class="progress-circle position" data-percent="82" data-duration="1000"
data-color="#e9ecef, 304CFD"></div>
<div class="label mt-1 d-block text-center">
<span>Auto CAD</span>
</div>
</div>-->
</div>
</div>
</div>
<div class="col-lg-6 skill-area-circle">
<div class="skill-box">
<h4 class="title">
Basic Knowledge
</h4>
<div class="skill-list">
<ul class="single-list-ul">
<li>
<p>Search engine marketing</p>
</li>
<li>
<p>Search engine optimization</p>
</li>
<li>
<p>iOS and android apps</p>
</li>
<li>
<p>Spreadsheets (Excel, Google Spreadsheets, etc.)</p>
</li>
<li>
<p>Softwares (Tableau, GIMP, Canvas etc.)</p>
</li>
<li>
<p>Email Communication</p>
</li>
<li>
<p>Presentation software (PowerPoint, Keynote)</p>
</li>
<li>
<p>Office suites (Microsoft Office, G Suite)</p>
</li>
<li>
<p>Operating systems (Windows and MacOS)</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="portfolio" style=" background: linear-gradient(#003153, #4e6c86);" class="project-gallery section-padding section-bg">
<div class="container">
<div class="row">
<div class="col-sm-6 col-lg-12 align-items-center">
<div class="page-title animation" data-animation="fadeInUp" data-animation-delay="0.02s">
<h1 class="textc" style="color: #fff;" align="center">Portfolio</h1>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="project-gallery-filter d-flex justify-content-center">
<ul class="project-gallery-menu d-inline-block">
<li class="filter active" data-filter="all">All</li>
<li class="filter" data-filter="1">Marketing</li>
<li class="filter" data-filter="2">Visualization</li>
<li class="filter" data-filter="3">Graphic Designing</li>
<li class="filter" data-filter="4">Application Development</li>
<li class="filter" data-filter="5">Website Development</li>
</ul>
</div>
<div class="row project-gallery-item">
<div class="mix col-md-6 col-lg-4 gallery-item cat-1 cat-3" data-category="1">
<a href="project1.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/G-2.jpg" alt="gd">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
Lineal Deodorant
</h4>
<span class="project-category">Graphic Designing</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-2" data-category="2">
<a href="project2.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/t-1.png" alt="vis" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
Country Wise Profit
</h4>
<span class="project-category">Visualization</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-1" data-category="1">
<a href="project3.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/P-1.jpg" alt="ppt" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
Stress Managment Presentation
</h4>
<span class="project-category">PPT</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-2" data-category="2">
<a href="project4.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/t-2.jpg" alt="vis" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
Sales Report
</h4>
<span class="project-category">Visualization</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-2" data-category="2">
<a href="project5.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/t-3.jpg" alt="vis" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
Indigo Stocks
</h4>
<span class="project-category">Visualization</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-2" data-category="2">
<a href="project6.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/t-4.jpg" alt="vis" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
IPL Analysis
</h4>
<span class="project-category">Visualization</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-4" data-category="4">
<a href="project7.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/t-5.jpg" alt="app" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
NetflixList
</h4>
<span class="project-category">App</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-4" data-category="4">
<a href="project8.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/app.jpg" alt="appsc" height="350" width="400">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
SkillCourse
</h4>
<span class="project-category">App</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-5" data-category="5">
<a href="project9.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/web1.png" alt="web" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
CodeIt
</h4>
<span class="project-category">Web Development</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-5" data-category="5">
<a href="project10.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/figma.jpg" alt="prototype" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
Car Tracking
</h4>
<span class="project-category">Prototype</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-5" data-category="5">
<a href="project11.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="https://Deepam-Aggarwal.github.io/space-tourism/preview.jpg" alt="Image" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
Space Tourism
</h4>
<span class="project-category">Web Development</span>
</div>
</div>
</div>
</a>
</div>
<div class="mix col-md-6 col-lg-4 gallery-item cat-5" data-category="5">
<a href="project12.html" class="gallery-item-content pp">
<div class="item-thumbnail">
<img src="assets/web5.png" alt="Image" height="350">
<div class="content-overlay">
<div class="content">
<h4 class="project-title">
Web App
</h4>
<span class="project-category">Web Development</span>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" style=" background: linear-gradient( #003153, #4e6c86);" class="contact contact-info-area section-padding section-bg">
<div class="container ">
<div class="row justify-content-center">
<div class="col-md-12">
<div class="text-center animation" data-animation="fadeInUp" data-animation-delay="0.01s">
<div class="heading_s1 text-center">
<h1 class="textc" style="color: #fff; ">Contact Me</h1>
</div>
</div>
<!--<div class="animation" data-animation="fadeInLeft"
data-animation-delay="0.03s" style="vertical-align: middle;">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6">
<div class="single-info">
<div class="info-icon">
<i class="fa fa-rocket"></i>
</div>
<div class="info-content">
<h5>My Location:</h5>
<p></p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-info">
<div class="info-icon">
<i class="fa fa-phone"></i>
</div>
<div class="info-content">
<h5>Phone Number:</h5>
<p>+91 </p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-info">
<div class="info-icon">
<i class="fa fa-envelope"></i>
</div>
<div class="info-content">
<h5>Email Address:</h5>
<p></p>
</div>
</div>
</div>
</div>-->
<div class="row cAndm">
<div class="col-lg-6">
<div class="home-page-form">
<div class="contact-form">
<form id="contact-form" method="post" action="https://send.pageclip.co/Xs03HguPb2luk63fZeTa5c2v6fsUiGN7/contact" class="pageclip-form">
<div class="controls">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input id="form_name" type="text" name="name" class="form-control" placeholder="Name*"
required="required" data-error="Name is required.">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input id="form_email" type="email" name="email" class="form-control" placeholder="Email*"
required="required" data-error="Valid email is required.">
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<input id="form_subject" type="text" name="subject" class="form-control"
placeholder="Subject*" required="required" data-error="Subject is required.">
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<textarea id="form_message" name="message" class="form-control" placeholder="Message*"
rows="7" required="required" data-error="Please,leave us a message."></textarea>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<button type="submit" class="mybtn mybtn-bg button_cta pageclip-form__submit"><span>Send Message</span></button>
</div>
</div>
</div>
</form> <!-- End Contact From -->
<div class="social-link">
<ul class="wrap">
<li class="wow fadeInUp">
<a href=""><i class="fab fa-facebook-f"></i></a>
</li>
<li class="wow fadeInUp">
<a href=""><i class="fab fa-twitter"></i></a>
</li>
<li class="wow fadeInUp">
<a href=""><i class="fab fa-linkedin-in"></i></a>
</li>
<li class="wow fadeInUp">
<a href=""><i class="fab fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<br />
<div class="col-lg-6">
<div class="google_map_wrapper">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d36706.63937536338!2d-2.971786671931012!3d54.900026818945854!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487ce1df3eee6b0f%3A0x5c0a43b6ba15682d!2sCarlisle%2C%20UK!5e0!3m2!1sen!2sbd!4v1601958052223!5m2!1sen!2sbd"
allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer_dark" style=" background:#003153">
<div class="top_footer">
<div class="container">
<div class="row">
<div class="col-lg-4 col-sm-12 left-sb-footer" style="margin-top: 10px;">
<div class="footer_logo">
<a href="index.html">
<img alt="logo" src="assets/DA.png" style="width:25%; height:25%">
</a>
</div>
</div>
<div class="col-lg-4 col-sm-12 right-sb-footer" style="margin-top: 10px;">
<h6 class="wid_title">Follow Me</h6>
<ul class="list_none social_icons radius_social social_white social_style1" style="margin-left:10px;">