-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
967 lines (863 loc) · 36 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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8">
<title>Puneet's Portfolio Website</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- font awesome -->
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- main css -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="./css/skins/color-1.css">
<link rel="stylesheet" type="text/css" href="./css/responsive.css">
<link rel="stylesheet" type="text/css" class="alternate-style" title="color-1" href="css/skins/color-1.css">
<link rel="stylesheet" type="text/css" class="alternate-style" title="color-2" href="css/skins/color-2.css" disabled>
<link rel="stylesheet" type="text/css" class="alternate-style" title="color-3" href="css/skins/color-3.css" disabled>
<link rel="stylesheet" type="text/css" class="alternate-style" title="color-4" href="css/skins/color-4.css" disabled>
<link rel="stylesheet" type="text/css" class="alternate-style" title="color-5" href="css/skins/color-5.css" disabled>
<link rel="stylesheet" href="css/style-switcher.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.12/typed.min.js"></script>
</head>
<div class="preloader">
<div class="box">
<div></div>
<div></div>
<div></div>
</div>
</div>
<body class="dark">
<header class="header">
<div class="container">
<div class="row justify-content-between">
<div class="logo">
<a href="index.html">P</a>
</div>
<div class="hamburger-btn outer-shadow hover-in-shadow">
<span></span>
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- Navigation Bar -->
<nav class="nav-menu">
<div class="close-nav-menu outer-shadow hover-in-shadow">
×
</div>
<div class="nav-menu-inner">
<div class="bg-effect">
<ul id="elements">
<li>C++</li>
<li></></li>
<li>HTML</li>
<li>Js</li>
<li>||</li>
<li>!=</li>
<li>CSS</li>
<li>==</li>
<li>=></li>
<li>%</li>
<li>Python</li>
<li>;</li>
<li>Java</li>
<li>&&</li>
<li>===</li>
</ul>
</div>
<ul>
<li><a href="#home" class="link-item inner-shadow active">Home</a></li>
<li><a href="#about" class="link-item outer-shadow hover-in-shadow">About ME</a></li>
<li><a href="#services" class="link-item outer-shadow hover-in-shadow">Volunteer Work</a></li>
<li><a href="#projects" class="link-item outer-shadow hover-in-shadow">Projects</a></li>
<li><a href="#testimonial" class="link-item outer-shadow hover-in-shadow">Testimonial</a></li>
<li><a href="#contact" class="link-item outer-shadow hover-in-shadow">Contact Me</a></li>
</ul>
</div>
<p class="copyright-text">© Puneet Singh. All rights reserved.</p>
</nav>
<div class="fade-out-effect"></div>
<!-- Navigation Bar -->
<!-- Home Section -->
<section class="section home-section active" id="home">
<!-- Effect Wrap -->
<div class="bg-effect">
<ul id="elements">
<li>C++</li>
<li></></li>
<li>HTML</li>
<li>Js</li>
<li>||</li>
<li>!=</li>
<li>CSS</li>
<li>==</li>
<li>=></li>
<li>%</li>
<li>Python</li>
<li>;</li>
<li>Java</li>
<li>&&</li>
<li>===</li>
</ul>
</div>
<div class="effect-wrap">
<div class="effect effect-1"></div>
</div>
<div class="effect effect-2">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="effect effect-3"></div>
<div class="effect effect-4"></div>
<div class="effect effect-5">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<!-- Effect Wrap -->
<div class="container">
<div class="row full-screen align-items-center">
<div class="home-text">
<p>Hello</p>
<h2>I am Puneet Singh</h2>
<h1><span class="typing"></span></h1>
<a href="#about" class="link-item btn-1 outer-shadow hover-in-shadow">More About ME</a>
</div>
<div class="home-img">
<div class="img-box inner-shadow">
<img src="img/profile-pic.png" class="outer-shadow" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- Home Section -->
<!-- About Section -->
<section class="about-section section" id="about">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="main-info">About Me</h2>
</div>
</div>
<div class="row">
<div class="about-img">
<div class="img-box inner-shadow">
<img src="img/profile-pic.png" class="outer-shadow hover-in-shadow" alt="">
</div>
<!-- Social Links -->
<div class="social-links">
<a href="https://instagram.com/its.puneet" target="_blank" class="outer-shadow hover-in-shadow"><i
class="fab fa-instagram"></i></a>
<a href="https://wa.me/+918567805002" target="_blank" class="outer-shadow hover-in-shadow"><i
class="fab fa-whatsapp"></i></a>
<a href="mailto:[email protected]" target="_blank" class="outer-shadow hover-in-shadow"><i
class="fab fa-google"></i></a>
<a href="https://github.com/its-puneet" target="_blank" class="outer-shadow hover-in-shadow"><i
class="fab fa-github"></i></a>
<a href="https://linkedin.com/in/puneetsingh1609" target="_blank" class="outer-shadow hover-in-shadow"><i
class="fab fa-linkedin"></i></a>
</div>
<!-- Social Links -->
</div>
<div class="about-info">
<p><span>Hi! My name is <span style="color: var(--skin-color);">Puneet Singh</span>. </span>I am an aspiring
Web Developer, along with I have hands on experience in Python Programming. Also familiar with other
languages like C++, Java and C# ASP.net. I have completed my graduation from Guru Nank Dev University in
<span style="color: var(--skin-color);">Bachelors of Technology</span> in Computer Science and Engineering
(2018-2022).
</p>
<p> I have completed my internship as a <span style="color: var(--skin-color);">Cloud Infrastructure Services
Intern</span> at <span style="color: var(--skin-color);"> Capgemini</span>. Now, I will be joining them as
Full Time <span style="color: var(--skin-color);"> Analyst</span> working on cloud infrastructure services
and other technologies like linux administration, windows administration and network administration.</p>
<a href="Puneet's Resume.pdf" class=" btn-1 btn-0 outer-shadow hover-in-shadow" download>Download CV</a>
<a href="#contact" class="link-item outer-shadow hover-in-shadow btn-1">Hire Me</a>
</div>
</div>
<!--About tabs-->
<div class="row">
<div class="about-tabs">
<span class="tab-item outer-shadow active" data-target=".skills">Skills</span>
<span class="tab-item " data-target=".education">Education</span>
<span class="tab-item" data-target=".experience">Experience</span>
</div>
</div>
<!-- Different tabs -->
<div class="row">
<div class="skills tab-content active">
<div class="row">
<!--Skill items-->
<div class="skill-item">
<p>Html</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(80% - 14px)">
<span>80%</span>
</div>
</div>
</div>
<!--Skill items-->
<!--Skill items-->
<div class="skill-item">
<p>Python</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(70% - 14px)">
<span>70%</span>
</div>
</div>
</div>
<!--Skill items-->
<!--Skill items-->
<div class="skill-item">
<p>CSS</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(65% - 14px)">
<span>65%</span>
</div>
</div>
</div>
<!--Skill items-->
<!--Skill items-->
<div class="skill-item">
<p>C++</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(60% - 14px)">
<span>60%</span>
</div>
</div>
</div>
<!--Skill items-->
<!--Skill items-->
<div class="skill-item">
<p>Javascript</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(50% - 14px)">
<span>50%</span>
</div>
</div>
</div>
<!--Skill items-->
<!--Skill items-->
<div class="skill-item">
<p>Java</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(35% - 14px)">
<span>35%</span>
</div>
</div>
</div>
<!--Skill items-->
<!--Skill items-->
<div class="skill-item">
<p>ReactJs</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(35% - 14px)">
<span>35%</span>
</div>
</div>
</div>
<!--Skill items-->
<!--Skill items-->
<div class="skill-item">
<p>Linux Administration</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(75% - 14px)">
<span>75%</span>
</div>
</div>
</div>
<!--Skill items-->
<!--Skill items-->
<div class="skill-item">
<p>Windows Administration</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(55% - 14px)">
<span>55%</span>
</div>
</div>
</div>
<!--Skill items-->
<!--Skill items-->
<div class="skill-item">
<p>Network Administration</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(40% - 14px)">
<span>40%</span>
</div>
</div>
</div>
<!--Skill items-->
</div>
</div>
</div>
<div class="row">
<div class="experience tab-content">
<div class="row">
<div class="timeline">
<div class="row">
<!--Timeline item-->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow carding">
<i class="fas fa-briefcase icon"></i>
<span>
June,2022 - Present
</span>
<h3>
Software Engineer
</h3>
<h4>
Capgemini, India
</h4>
<p>
Working as Software Engineer / Analyst at Capgemini in Cloud Infrastructure Domain. Working on Cloud and other services- linux administration, windows administration and network administration.
</p>
</div>
</div>
<!--Timeline item-->
<!--Timeline item-->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow carding">
<i class="fas fa-briefcase icon"></i>
<span>
February,2022 - June,2022
</span>
<h3>
Cloud Infrastructure Services Intern
</h3>
<h4>
Capgemini, India
</h4>
<p>
I have completed my internship as a Cloud Infrastructure Services Intern at Capgemini. Now, I will
be joining them as Full Time Analyst working on cloud infrastructure services and other
technologies like linux administration, windows administration and network administration.
</p>
</div>
</div>
<!--Timeline item-->
<!--Timeline item-->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow carding">
<i class="fas fa-briefcase icon"></i>
<span>
October,2020 - November,2020
</span>
<h3>
Python Intern
</h3>
<h4>
Best Enlist
</h4>
<p>
Internship based on mainly focused on Python training and projects. While undergoing this
internship, I developed various mini projects using python, python Mysql, Tkinter, APIs under the
guidance of mentors in this internship. The projects and other assignments performed in this
internship are uploaded on my github.
</p>
</div>
</div>
<!--Timeline item-->
<!--Timeline item-->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow carding">
<i class="fas fa-briefcase icon"></i>
<span>
October,2020 - November,2020
</span>
<h3>
Website Designer Intern
</h3>
<h4>
Internship Studio
</h4>
<p>
Internship based on mainly focused on Web Development training and project. While undergoing this
internship, I learned about front end technologies- HTML, CSS, Javascript, BOOTSTRAP and JQUERY.
An ecommerce website ws the final project to be built for successful completion of the internship.
</p>
</div>
</div>
<!--Timeline item-->
</div>
</div>
</div>
</div>
</div>
<!-- Education Tabs-->
<div class="row">
<div class="education tab-content">
<div class="row">
<div class="timeline">
<div class="row">
<!--Timeline item-->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow carding">
<i class="fas fa-graduation-cap icon"></i>
<span>
May,2018 - May,2022
</span>
<h3>
Bachelors of Technology
</h3>
<h4>
Guru Nanak Dev University, Amritsar
</h4>
<p>
I persured Bachelors of Technology in Computer Science and Engineering with a CGPA of 7.63/10.
Learned various core CS subjects - Operating System, Computer Networks, Database Management System
and Object Oriented Programming concepts. Along with this, I also learnt about various programming
languages- C++, Python, Java and ASP.NET.
</p>
</div>
</div>
<!--Timeline item-->
<!--Timeline item-->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow carding">
<i class="fas fa-graduation-cap icon"></i>
<span>
April,2017 - April,2018
</span>
<h3>
Post - Matric
</h3>
<h4>
Guru Nanak Internationl Public School, Ludhiana
</h4>
<p>
Completed my Post-Matric in Non-Medical with subjects-English, Physics, Chemistry, Maths &
Physical Education. I scored 79.2% in my Post-Matric.
</p>
</div>
</div>
<!--Timeline item-->
<!--Timeline item-->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow carding">
<i class="fas fa-graduation-cap icon"></i>
<span>
April, 2015 - April,2016
</span>
<h3>
Matric
</h3>
<h4>
Guru Nanak Internationl Public School, Ludhiana
</h4>
<p>
Completed my Matric in with subjects-English, Science, Social Studies, Maths, Punjabi & Physical
Education. I scored 10CGPA in my Matric.
</p>
</div>
</div>
<!--Timeline item-->
</div>
</div>
</div>
</div>
</div>
<!-- Education Tabs -->
<!--About tabs-->
</div>
</section>
<!-- about Section -->
<!-- Services Section -->
<section class="section service-section" id="services">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="What I do?">Volunteer Work</h2>
</div>
</div>
<div class="row">
<!-- Service items -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-laptop-code"></i>
</div>
<h3>Founder at All About Programming</h3>
<p>Founded All About Programming with the vision to provide quality resources to every student free of cost. Currently, Community spreads all over india with a total audience of 4.5k+ in 9 months proving a one stop for all programmers</p>
</div>
</div>
<!-- Service items -->
<!-- Service items -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-bullhorn"></i>
</div>
<h3>Lumos Wizard</h3>
<p>I am Discord Community Manager for Lumos Metaverse. Engaging with the Web3 Community through various
platforms. Setting and implementing social media and communication campaigns to align with Marketing
Strategies.</p>
</div>
</div>
<!-- Service items -->
<!-- Service items -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-laptop-code"></i>
</div>
<h3>Co-Founder at Codedu Community</h3>
<p>Joined a fast emerging community as Co-Founder for helping the core team and Founders by valuable guidance. Codedu is also on the same vision as All About Programming</p>
</div>
</div>
<!-- Service items -->
<!-- Service items -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-bullhorn"></i>
</div>
<h3>DevRel at Hashteq</h3>
<p>Kickstarting my DevRel Journey by part of Hashteq community. Hashteq is aimed at providing essential coding bootcamps and Hackathons free of cost.</p>
</div>
</div>
<!-- Service items -->
<!-- Service items -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-laptop-code"></i>
</div>
<h3>Mentor at CodeSide</h3>
<p>A newly started community aimed with providing daily brain teasers and problems to prepare students in the right direction. Joined this community as a Mentor to guide students</p>
</div>
</div>
<!-- Service items -->
<!-- Service items -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-bullhorn"></i>
</div>
<h3>Mentor at SoS Tech Inc</h3>
<p>A community o a 14 year Full Stack Developer. Mentoring and Supervising the whole community for the smooth functioning</p>
</div>
</div>
<!-- Service items -->
<!-- Service items -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-laptop-code"></i>
</div>
<h3>Business Development Associate</h3>
<p>I was part of a Startup named NINTHSEM which provided industrial based training to core engineering
branch students at an affordable costs. Developed marketing techniques by working directly with Founder
and CEO of Startup.</p>
</div>
</div>
<!-- Service items -->
<!-- Service items -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-bullhorn"></i>
</div>
<h3>GeeksforGeeks-GNDU</h3>
<p>Leading the Content and Design Team of GeeksforGeeks-GNDU Student Chapter of my campus, helped spread awareness of greatest computer science portal GFG. Also, Conducted several events with Core Team. </p>
</div>
</div>
<!-- Service items -->
<!-- Service items -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-laptop-code"></i>
</div>
<h3>Outreach Manager</h3>
<p>Part of a startup JIGSAWMINDZ where every student was provided with resources and live education for tech
enthusiats. I was responsible for whole outreach program carried out by Team. Worked directly with
Founders & Co-Founders.</p>
</div>
</div>
<!-- Service items -->
</div>
</div>
</section>
<!-- Services Section -->
<!-- portfolio section start -->
<section class="portfolio-section section" id="projects">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="portfolio">Latest Works</h2>
</div>
</div>
<div class="row">
<div class="container-1">
<div class="card">
<div class="Box">
<img src="img/portfolio/1.png">
</div>
<div class="details">
<h2>Desktop Assistant</h2>
<p><strong>Description</strong> - Made a desktop assistant by implementing a part of Artificial
Intelligence using various libraries and APIs. It takes voice input and gives voice output along with performing various functions
like opening software, searching google and youtube, cracking random jokes, COVID
cases, Weather Forecast etc. </p>
<a href="https://github.com/its-puneet/Desktop_Assistant">Check Project</a>
</div>
</div>
<div class="card">
<div class="Box">
<img src="img/portfolio/2.png">
</div>
<div class="details">
<h2>Sudoku Solver</h2>
<p>Description- Implemented backtracking algorithm in Python to make a sudoku solver which gives us optimized solution of the sudoku problem. It is a real life application of Data Structures and Algorithms. </p>
<a href="https://github.com/its-puneet/sudokusolver">Check Project</a>
</div>
</div>
<div class="card">
<div class="Box">
<img src="img/portfolio/3.png">
</div>
<div class="details">
<h2>CodeChef Automation</h2>
<p>Codechef Automation using SELENIUM is a project which automatically opens CODECHEF website and run a specific code on its compiler. This specific code has to be in same directory. </p>
<a href="https://github.com/its-puneet/Codechef-Automation-Using-Selenium">Check Project</a>
</div>
</div>
<div class="card">
<div class="Box">
<img src="img/portfolio/4.png">
</div>
<div class="details">
<h2>Ecommerce Website</h2>
<p>As a part of Intern at Internship Studio I made a Ecommerce Website using HTML, CSS, BOOTSTRAP, JAVASCRIPT and JQUERY. This Website was the final task of this Internship. Learned a lot about Web Development in this period. </p>
<a href="https://drive.google.com/drive/folders/1zpagKsCEU0La54kJnWzoFtUxfXaHUnSY?usp=sharing">Check Project</a>
</div>
</div>
<div class="card">
<div class="Box">
<img src="img/portfolio/5.png">
</div>
<div class="details">
<h2>Portfolio Website</h2>
<p>My Personal Portfolio made using HTML,CSS and Javascript to showcase my skills as well as projects. </p>
<a href="https://its-puneet.github.io/Puneet-Singh_Portfolio/">Check Project</a>
</div>
</div>
<div class="card">
<div class="Box">
<img src="img/portfolio/6.png">
</div>
<div class="details">
<h2>Gym Landing Page</h2>
<p>I made a landing page of Local GYMusing HTML, CSS (Less Responsive). This Webpage was a part of my Web Development Learning process. So, Just to test my skills, made this project due to which it is less responsive. </p>
<a href="https://its-puneet.github.io/dynamicfitness/">Check Project</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- portfolio section end-->
<!-- Testimonial Section -->
<section class="testimonial-section section" id="testimonial">
<div class="container">
<div class="row">
<div class="bg-effect">
<ul id="elements">
<li>C++</li>
<li></></li>
<li>HTML</li>
<li>Js</li>
<li>||</li>
<li>!=</li>
<li>CSS</li>
<li>==</li>
<li>=></li>
<li>%</li>
<li>Python</li>
<li>;</li>
<li>Java</li>
<li>&&</li>
<li>===</li>
</ul>
</div>
<div class="section-title">
<h2 data-heading="Testimonial">Colleague Speak</h2>
</div>
</div>
<div class="row">
<div class="testi-box">
<div class="testi-slider outer-shadow">
<div class="testi-slider-container">
<div class="testi-item">
<i class="fas fa-quote-left left"></i>
<i class="fas fa-quote-right right"></i>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit, consectetur?</p>
<img src="img/testimonial/1.png" alt="testimonial">
<span>Puneet Singh</span>
</div>
<div class="testi-item">
<i class="fas fa-quote-left left"></i>
<i class="fas fa-quote-right right"></i>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit, consectetur?</p>
<img src="img/testimonial/1.png" alt="testimonial">
<span>Puneet Singh</span>
</div>
<div class="testi-item">
<i class="fas fa-quote-left left"></i>
<i class="fas fa-quote-right right"></i>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit, consectetur?</p>
<img src="img/testimonial/1.png" alt="testimonial">
<span>Puneet Singh</span>
</div>
</div>
</div>
<div class="testi-slider-nav">
<span class="prev outer-shadow hover-in-shadow">
<i class="fas fa-angle-left"></i>
</span>
<span class="next outer-shadow hover-in-shadow">
<i class="fas fa-angle-right"></i>
</span>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonial Section -->
<!-- Contact Section -->
<section class="contact-section section" id="contact">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="Contact">Get in Touch</h2>
</div>
</div>
<div class="row">
<!-- Contact item -->
<div class="contact-item">
<div class="contact-item-inner outer-shadow">
<i class="fas fa-phone"></i>
<span>Phone Number</span>
<p><a href="tel:8567805002">856 7805 002</a></p>
</div>
</div>
<!-- Contact item -->
<!-- Contact item -->
<div class="contact-item">
<div class="contact-item-inner outer-shadow">
<i class="fas fa-envelope"></i>
<span>Email</span>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<!-- Contact item -->
<!-- Contact item -->
<div class="contact-item">
<div class="contact-item-inner outer-shadow">
<i class="fas fa-map-marker-alt"></i>
<span>City</span>
<p>Ludhiana, Punjab</p>
</div>
</div>
<!-- Contact item -->
</div>
<div class="row">
<div class="contact-form">
<form onsubmit="sendEmail(); reset(); return false;"
action="https://docs.google.com/forms/u/0/d/e/1FAIpQLSed1-OOv0GypxSKXnojD-dYSJEm1vFueuv_VDmaBE69aEMWOA/formResponse">
<div class="row">
<div class="w-50">
<div class="input-group outer-shadow ">
<input type="text" placeholder="Name" name="" id="" class="input-controller">
</div>
<div class="input-group outer-shadow ">
<input type="email" placeholder="Email" jsname="YPqjbf" id="" class="input-controller">
</div>
<div class="input-group outer-shadow ">
<input type="number" placeholder="Phone Number" name="" id="" class="input-controller">
</div>
<div class="input-group outer-shadow ">
<input type="text" placeholder="Subject" name="" id="" class="input-controller">
</div>
</div>
<div class="w-50">
<div class="input-group outer-shadow">
<textarea name="" class="input-controller" placeholder="Enter your messege here....." id="" cols="30"
rows="10"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="submit-btn">
<button type="submit" class="link-item btn-1 outer-shadow hover-in-shadow">Send Messege</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<!-- Style Switcher -->
<div class="style-switcher outer-shadow">
<div class="style-switcher-toggler s-icon outer-shadow hover-in-shadow ">
<i class="fas fa-cog fa-spin"></i>
</div>
<div class="day-night s-icon outer-shadow hover-in-shadow">
<i class="fas"></i>
</div>
<h4>Theme Colors</h4>
<div class="colors">
<span class="color-1" onclick="setActiveStyle('color-1')">
</span>
<span class="color-2" onclick="setActiveStyle('color-2')">
</span>
<span class="color-3" onclick="setActiveStyle('color-3')">
</span>
<span class="color-4" onclick="setActiveStyle('color-4')">
</span>
<span class="color-5" onclick="setActiveStyle('color-5')">
</span>
</div>
</div>
<!-- main js -->
<script src="js/main.js"></script>
<!-- style switcher js -->
<script src="js/style-switcher.js"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
</body>
</html>