-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
944 lines (914 loc) · 34.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="styles.css" id="theme" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="icon" href="assets/head_icon.png" />
<title>Portfolio Website</title>
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="📦"></div>
<div class="📦"></div>
<div class="📦"></div>
<div class="📦"></div>
<div class="📦"></div>
</div>
<!-- Switch Mode Light&Dark -->
<div id="mode">
<input type="checkbox" id="toggle-mode" />
<label for="toggle-mode" id="slider">
<i class="fa-regular fa-sun iswitch" id="light"></i>
<i class="fa-regular fa-moon iswitch" id="dark"></i>
</label>
</div>
<!-- Scroll-to-top button -->
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-custom navbar-mainbg">
<a class="navbar-brand navbar-logo" href="#">PORTFOLIO</a>
<button
class="navbar-toggler"
type="button"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<i class="fas fa-bars text-white"></i>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<div class="hori-selector">
<div class="leftSide"></div>
<div class="rightSide"></div>
</div>
<li class="nav-item active" id="li_home">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item" id="li_about">
<a class="nav-link" href="#about">About Me</a>
</li>
<li class="nav-item" id="li_skill_section">
<a class="nav-link" href="#skill_section">Skills</a>
</li>
<li class="nav-item" id="li_education">
<a class="nav-link" href="#education">Education</a>
</li>
<li class="nav-item" id="li_projects">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item" id="li_experience">
<a class="nav-link" href="#experience">Experience</a>
</li>
<li class="nav-item" id="li_contact">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Home Section -->
<section id="home">
<div class="text">
<p>
Hey there
<img
src="https://raw.githubusercontent.com/MartinHeinz/MartinHeinz/master/wave.gif"
width="40px"
/>
!
</p>
<h1>I am <span>Ariana.</span></h1>
<h1>
<a
href=""
class="typewrite"
data-period="2000"
data-type='[ "Code Enthusiast!", "Web Developer!", "Frontend Dev!", "Programmer!", "Backend Dev!"]'
>
<span class="wrap"></span>
</a>
</h1>
<div class="icons">
<a href="#" target="_blank"><i class="fab fa-linkedin-in"></i></a>
<a href="#" target="_blank"><i class="fab fa-github"></i></a>
<a href="#" target="_blank"><i class="fab fa-x-twitter"></i></a>
</div>
<button class="btn_resume">
<a href="assets/Resume.pdf" target="_blank">Resume</a>
</button>
</div>
<div class="images">
<img src="assets\graph.png" alt="image1" class="shape" />
<img src="assets\profile.png" alt="image2" class="girl" />
</div>
</section>
<!-- About Me -->
<section id="about" class="about-me">
<div class="container" data-aos="fade-up">
<div id="#about-heading"><h1>About Me</h1></div>
<div class="line">
<span>⇢</span>
<p class="desc-me">
A passionate and dedicated web developer currently immersed in the
second year of my academic journey at IGDTUW. My fascination with
the intricate workings of technology sparked at an early stage,
driven by a profound curiosity for the mechanics of the web.
</p>
</div>
<div class="line">
<span>⇢</span>
<p class="desc-me">
Throughout my academic pursuits at IGDTUW, I've diligently
cultivated a robust foundation in key programming languages,
encompassing HTML, CSS, and JavaScript. My enthusiasm lies in the
art of crafting responsive and aesthetically pleasing websites, not
only meeting functional prerequisites but also ensuring a delightful
user experience.
</p>
</div>
<div class="line">
<span>⇢</span>
<p class="desc-me">
Beyond the confines of the classroom, my engagement in coding
competitions, hackathons, and collaborative projects stands as a
testament to my proactive approach. This continuous involvement
serves as a means of enhancing my skills, keeping pace with the
ever-evolving industry trends.
</p>
</div>
<div class="line">
<span>⇢</span>
<p class="desc-me">
As a second-year student, my aspirations extend towards broadening
my knowledge horizons, undertaking complex and stimulating projects,
and making valuable contributions to the dynamic realm of web
development. I am eager to connect and explore the myriad
possibilities that lie ahead. Let's embark on this journey together!
</p>
</div>
<div id="xp">
<div
class="vab-box"
data-aos="flip-left"
data-aos-easing="ease-out-cubic"
>
<div class="num-box" id="inc">26</div>
<div class="text-box">Projects Created</div>
</div>
<div
class="vab-box"
data-aos="flip-left"
data-aos-delay="500"
data-aos-easing="ease-out-cubic"
>
<div class="num-box" id="speed">25000</div>
<div class="text-box">Lines of Code Written</div>
</div>
<div
class="vab-box"
data-aos="flip-left"
data-aos-delay="1000"
data-aos-easing="ease-out-cubic"
>
<div class="num-box" id="tick">14</div>
<div class="text-box">Hackathons Participated</div>
</div>
</div>
</div>
</section>
<!-- Skills section -->
<section id="skill_section" class="skills">
<div class="container">
<h2 id="head-skill">Skills</h2>
<div class="skill-category" data-aos="fade-right">
<h3>Technical Skills</h3>
<div class="skills-list">
<div class="skill-item">
<i class="fa-brands fa-html5"></i
><span class="skill-name">HTML</span>
<div class="prg">
<progress class="skillset" value="95" max="100"></progress>
<span class="amt">95%</span>
</div>
</div>
<div class="skill-item">
<i class="fa-brands fa-css3-alt"></i
><span class="skill-name">CSS</span>
<div class="prg">
<progress class="skillset" value="90" max="100"></progress>
<span class="amt">90%</span>
</div>
</div>
<div class="skill-item">
<i class="fa-brands fa-js"></i
><span class="skill-name">JavaScript</span>
<div class="prg">
<progress class="skillset" value="84" max="100"></progress>
<span class="amt">84%</span>
</div>
</div>
<div class="skill-item">
<i class="fa-brands fa-react"></i
><span class="skill-name">React</span>
<div class="prg">
<progress class="skillset" value="80" max="100"></progress>
<span class="amt">80%</span>
</div>
</div>
<div class="skill-item">
<i class="fa-brands fa-angular"></i
><span class="skill-name">Angular</span>
<div class="prg">
<progress class="skillset" value="60" max="100"></progress>
<span class="amt">60%</span>
</div>
</div>
<div class="skill-item">
<i class="fa-brands fa-node-js"></i
><span class="skill-name">Node.js</span>
<div class="prg">
<progress class="skillset" value="70" max="100"></progress>
<span class="amt">70%</span>
</div>
</div>
<div class="skill-item">
<i class="fa-brands fa-python"></i
><span class="skill-name">Python</span>
<div class="prg">
<progress class="skillset" value="85" max="100"></progress>
<span class="amt">85%</span>
</div>
</div>
<div class="skill-item">
<i class="fa-solid fa-database"></i
><span class="skill-name">MongoDB</span>
<div class="prg">
<progress class="skillset" value="65" max="100"></progress>
<span class="amt">65%</span>
</div>
</div>
</div>
</div>
<div class="skill-category" data-aos="fade-left">
<h3>Professional Skills</h3>
<div class="skills-list">
<div class="skill-item">
<div class="circle-bar">
<div class="cic-value">85%</div>
<div class="cic-name">Creativity</div>
</div>
</div>
<div class="skill-item">
<div class="circle-bar" id="b">
<div class="cic-value">60%</div>
<div class="cic-name">Communication</div>
</div>
</div>
<div class="skill-item">
<div class="circle-bar">
<div class="cic-value">90%</div>
<div class="cic-name">Problem Solving</div>
</div>
</div>
<div class="skill-item">
<div class="circle-bar">
<div class="cic-value">80%</div>
<div class="cic-name">Teamwork</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Education Section -->
<section id="education" class="education part">
<div class="container">
<h1 id="edu">Education</h1>
<div class="timeline">
<div class="contain left" data-aos="fade-right">
<div class="content">
<h2>20XX</h2>
<p>
Lorem ipsum dolor sit amet, quo ei simul congue exerci, ad nec
admodum perfecto mnesarchum, vim ea mazim fierent detracto. Ea
quis iuvaret expetendis his, te elit voluptua dignissim per,
habeo iusto primis ea eam.
</p>
</div>
</div>
<div class="contain right" data-aos="fade-left">
<div class="content">
<h2>20XX</h2>
<p>
Lorem ipsum dolor sit amet, quo ei simul congue exerci, ad nec
admodum perfecto mnesarchum, vim ea mazim fierent detracto. Ea
quis iuvaret expetendis his, te elit voluptua dignissim per,
habeo iusto primis ea eam.
</p>
</div>
</div>
<div class="contain left" data-aos="fade-right">
<div class="content">
<h2>20XX</h2>
<p>
Lorem ipsum dolor sit amet, quo ei simul congue exerci, ad nec
admodum perfecto mnesarchum, vim ea mazim fierent detracto. Ea
quis iuvaret expetendis his, te elit voluptua dignissim per,
habeo iusto primis ea eam.
</p>
</div>
</div>
<div class="contain right" data-aos="fade-left">
<div class="content">
<h2>20XX</h2>
<p>
Lorem ipsum dolor sit amet, quo ei simul congue exerci, ad nec
admodum perfecto mnesarchum, vim ea mazim fierent detracto. Ea
quis iuvaret expetendis his, te elit voluptua dignissim per,
habeo iusto primis ea eam.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Project Section -->
<section id="projects" class="projects">
<div class="container">
<div id="project-heading">
<h1>Projects</h1>
</div>
<div class="box">
<!-- projects on left -->
<div class="project-left">
<div class="project" data-aos="fade-right">
<h3>Project 1</h3>
<p>
A dynamic web application showcasing my skills in HTML, CSS, and
JavaScript. Implemented responsive design for optimal user
experience.
</p>
<p><strong>Skills and Tools:</strong> HTML, CSS, JavaScript</p>
<div class="buttons">
<button>
<a
href="https://example-project1-live-website.com"
target="_blank"
>Live Website</a
>
</button>
<button>
<a
href="https://github.com/your-username/project1"
target="_blank"
>GitHub Repo</a
>
</button>
</div>
</div>
<div class="project" data-aos="fade-right">
<h3>Project 2</h3>
<p>
Built a full-stack web app with Node.js, featuring user
authentication and third-party API integration for enhanced
functionality.
</p>
<p>
<strong>Skills and Tools:</strong> HTML, CSS, JavaScript,
Node.js, MongoDB
</p>
<div class="buttons">
<button>
<a
href="https://example-project1-live-website.com"
target="_blank"
>Live Website</a
>
</button>
<button>
<a
href="https://github.com/your-username/project1"
target="_blank"
>GitHub Repo</a
>
</button>
</div>
</div>
</div>
<!-- projects on right -->
<div class="project-right">
<div class="project" data-aos="fade-left">
<h3>Project 3</h3>
<p>
Built a mobile-responsive website using React.js. Integrated
state management for a seamless user interface and employed
RESTful API communication.
</p>
<p>
<strong>Skills and Tools:</strong> HTML, CSS, JavaScript,
React.js
</p>
<div class="buttons">
<button>
<a
href="https://example-project1-live-website.com"
target="_blank"
>Live Website</a
>
</button>
<button>
<a
href="https://github.com/your-username/project1"
target="_blank"
>GitHub Repo</a
>
</button>
</div>
</div>
<div class="project" data-aos="fade-left">
<h3>Project 4</h3>
<p>
Social networking app for sharing multimedia content. Features
include user profiles, posts, comments, and real-time
notifications.
</p>
<p>
<strong>Skills and Tools:</strong> HTML, CSS, JavaScript,
Angular, Flask, MySQL
</p>
<div class="buttons">
<button>
<a
href="https://example-project1-live-website.com"
target="_blank"
>Live Website</a
>
</button>
<button>
<a
href="https://github.com/your-username/project1"
target="_blank"
>GitHub Repo</a
>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="main">
<h5 class="heading">Experience</h5>
<div class="exp" data-aos="slide-in">
<ul>
<li>
<h3 class="title">Frontend Developer</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur
dolore totam ipsum neque, temporibus explicabo?
</p>
<a href="#">Know More ></a>
<span class="circle"></span>
<span class="date">January 2022</span>
</li>
<li>
<h3 class="title">Backend Developer</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur
dolore totam ipsum neque, temporibus explicabo?
</p>
<a href="#">Know More ></a>
<span class="circle"></span>
<span class="date">February 2022</span>
</li>
<li>
<h3 class="title">Web Designer</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur
dolore totam ipsum neque, temporibus explicabo?
</p>
<a href="#">Know More ></a>
<span class="circle"></span>
<span class="date">March 2022</span>
</li>
<li>
<h3 class="title">Blockchain Developer</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur
dolore totam ipsum neque, temporibus explicabo?
</p>
<a href="#">Know More ></a>
<span class="circle"></span>
<span class="date">April 2022</span>
</li>
</ul>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="testimonial-section">
<div class="container space" data-aos="zoom-in">
<h2>Testimonials</h2>
<div
id="testimonialCarousel"
class="carousel"
data-bs-ride="carousel"
data-bs-pause="false"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselIndicators"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselIndicators"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselIndicators"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
<button
type="button"
data-bs-target="#carouselIndicators"
data-bs-slide-to="3"
aria-label="Slide 4"
></button>
<button
type="button"
data-bs-target="#carouselIndicators"
data-bs-slide-to="4"
aria-label="Slide 5"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/test_icons/1.png" alt="Profile Photo" />
<h6 class="test-head">
Brett Stockley | CEO & Co-founder | Alphabet
</h6>
<p class="test-desc">
"Exceptional contributions from Ariana have elevated our
projects, demonstrating unparalleled skill, dedication, and
innovation. Truly invaluable to Alphabet."
</p>
<div class="test-abt">
<a href="https://linkedin.com/" target="_blank">
<i class="fa-brands fa-linkedin test-profile"></i>
</a>
<a href="https://github.com/" target="_blank">
<i class="fa-brands fa-github test-profile"></i>
</a>
<a href="https://twitter.com/" target="_blank">
<i class="fa-brands fa-x-twitter test-profile"></i>
</a>
</div>
</div>
<div class="carousel-item">
<i class="fa-brands fa-"></i>
<img src="assets/test_icons/2.png" alt="Profile Photo" />
<h6 class="test-head">Riya Jain | Project Admin | Google</h6>
<p class="test-desc">
"Thrilled with Ariana's outstanding work at Google. Their
technical prowess, problem-solving acumen, and collaborative
spirit have significantly enriched our projects. A true asset to
our team."
</p>
<div class="test-abt">
<a href="https://linkedin.com/" target="_blank">
<i class="fa-brands fa-linkedin test-profile"></i>
</a>
<a href="https://github.com/" target="_blank">
<i class="fa-brands fa-github test-profile"></i>
</a>
<a href="https://twitter.com/" target="_blank">
<i class="fa-brands fa-x-twitter test-profile"></i>
</a>
</div>
</div>
<div class="carousel-item">
<i class="fa-brands fa-"></i>
<img src="assets/test_icons/3.png" alt="Profile Photo" />
<h6 class="test-head">
Aayush Gupta | Freelancer | GSoC Contributor
</h6>
<p class="test-desc">
"Grateful for the remarkable contributions of Ariana in the
open-source community. Their expertise, passion, and commitment
shine through, making a lasting impact. A pleasure to
collaborate with."
</p>
<div class="test-abt">
<a href="https://linkedin.com/" target="_blank">
<i class="fa-brands fa-linkedin test-profile"></i>
</a>
<a href="https://github.com/" target="_blank">
<i class="fa-brands fa-github test-profile"></i>
</a>
<a href="https://twitter.com/" target="_blank">
<i class="fa-brands fa-x-twitter test-profile"></i>
</a>
</div>
</div>
<div class="carousel-item">
<i class="fa-brands fa-"></i>
<img src="assets/test_icons/4.png" alt="Profile Photo" />
<h6 class="test-head">Neha Sharma | HR at Infosys | Recruiter</h6>
<p class="test-desc">
"Highly commend Ariana for their exceptional skills at Infosys.
Their commitment to quality, innovation, and teamwork is
commendable, contributing significantly to our technological
advancements and project successes."
</p>
<div class="test-abt">
<a href="https://linkedin.com/" target="_blank">
<i class="fa-brands fa-linkedin test-profile"></i>
</a>
<a href="https://github.com/" target="_blank">
<i class="fa-brands fa-github test-profile"></i>
</a>
<a href="https://twitter.com/" target="_blank">
<i class="fa-brands fa-x-twitter test-profile"></i>
</a>
</div>
</div>
<div class="carousel-item">
<i class="fa-brands fa-"></i>
<img src="assets/test_icons/5.png" alt="Profile Photo" />
<h6 class="test-head">Prof. Dr. Anubhav Singh | IGDTUW</h6>
<p class="test-desc">
"I'm immensely proud of Ariana, my student turned accomplished
software developer. Their diligence, analytical thinking, and
continuous pursuit of knowledge have not only impressed me but
set a benchmark for excellence."
</p>
<div class="test-abt">
<a href="https://linkedin.com/" target="_blank">
<i class="fa-brands fa-linkedin test-profile"></i>
</a>
<a href="https://github.com/" target="_blank">
<i class="fa-brands fa-github test-profile"></i>
</a>
<a href="https://twitter.com/" target="_blank">
<i class="fa-brands fa-x-twitter test-profile"></i>
</a>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#testimonialCarousel"
data-bs-slide="prev"
>
<i class="fa-solid fa-angles-left swipe"></i>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#testimonialCarousel"
data-bs-slide="next"
>
<i class="fa-solid fa-angles-right swipe"></i>
</button>
</div>
</div>
</section>
<!-- Certificates -->
<section id="certificates" class="container wide">
<div class="c-container">
<h2 id="certificate-heading">Certificates</h2>
<div class="certified">
<img
src="/assets/certificates/c1.jpeg"
alt="Certificate"
id="c-img"
/>
<div id="c-desc">
Achieved by showcasing innovative problem-solving skills and
collaborative teamwork in a national hackathon competition. This
certificate attests to my ability to devise creative solutions and
contribute effectively to complex web development challenges.
</div>
</div>
</div>
</section>
<!----FAQ section starting----------->
<section class="faqs" id="faqs-section">
<div class="containerfaqs">
<div class="centered-image" data-aos="zoom-in">
<img
src="assets\imagefaq.jpg"
alt="Centered Image"
style="margin-left: 105px"
/>
</div>
<h1>
<span id="faq-head">Frequently Asked Questions?</span>
</h1>
<div class="tabss-container">
<div class="tabss" data-aos="zoom-in">
<input type="checkbox" name="acc1" id="acc1" />
<label for="acc1"> 01 In which year do I study? </label>
<div class="contentfaqs"><p>I currently study in 2nd year.</p></div>
</div>
<div class="tabss" data-aos="zoom-in">
<input type="checkbox" name="acc2" id="acc2" />
<label for="acc2">
02 Am I a member of any of the college societies?
</label>
<div class="contentfaqs">
<p>Yes, I am the part of college societies named_____</p>
</div>
</div>
<div class="tabss" data-aos="zoom-in">
<input type="checkbox" name="acc3" id="acc3" />
<label for="acc3"> 03 What are my hobbies? </label>
<div class="contentfaqs">
<p>I have various hobbies, I like to ___name of hobbies___</p>
</div>
</div>
</div>
</div>
</section>
<!----FAQ Section ending------------->
<!-----FeedBack section starting------>
<section class="feedbacksssection">
<div>
<h1><span class="feedback-title">Feedback</span></h1>
<div class="contact-right">
<form class="feedback-form" name="submit-to-google-sheet">
<h4 id="feed-item"><i class="fa-brands fa-"></i>Your Name</h4>
<p>
<textarea
type="text"
name="Name"
placeholder="Your Name"
required
data-aos="zoom-in"
></textarea>
</p>
<h4 id="feed-item"><i class="fa-brands fa-"></i>Your Email</h4>
<p>
<textarea
type="email"
name="Email"
placeholder="Your email"
required
data-aos="zoom-in"
></textarea>
</p>
<h4 id="feed-item"><i class="fa-brands fa-"></i>Feedback</h4>
<p>
<textarea
name="Message"
rows="6"
placeholder="Feedback"
data-aos="zoom-in"
></textarea>
</p>
<button type="submit" class="btn-submit">Submit</button>
</form>
<span class="feedback-msg" id="msg"></span>
</div>
</div>
</section>
<!------------------------form setup for taking response-------------------------------cont scriptURL: link of excel after deploying------------->
<script>
const scriptURL =
"https://script.google.com/macros/s/AKfycbzkeJ4XLJecSd8-vyqHQwPB_y05UvF5GBeNVy4jnbnfFFbbxXhEaRkrbxMCmKmUv4iPFw/exec";
const form = document.forms["submit-to-google-sheet"];
const msg = document.getElementById("msg");
form.addEventListener("submit", (e) => {
e.preventDefault();
fetch(scriptURL, { method: "POST", body: new FormData(form) })
.then((response) => {
msg.innerHTML = "Feedback sent successfully";
setTimeout(function () {
msg.innerHTML = "";
}, 5000);
form.reset();
})
.catch((error) => console.error("Error!", error.message));
});
</script>
<!-----FeedBack section starting------>
<!-- Contact Me Section -->
<footer class="footer-section" id="contact">
<div class="container">
<h2 style="text-align: center">Contact Me</h2>
<div class="footer-cta pt-5 pb-5">
<div class="row">
<div class="col-xl-4 col-md-4 mb-30">
<div class="single-cta">
<a
href="https://maps.app.goo.gl/orfoKZXaVM7p2q6g9"
class="contact-items"
target="_blank"
>
<i class="fas fa-map-marker-alt"></i>
<div class="cta-text">
<h4>Address</h4>
<span>IGDTUW, New Delhi, India</span>
</div>
</a>
</div>
</div>
<div class="col-xl-4 col-md-4 mb-30">
<div class="single-cta">
<a
href="tel:+919898363601"
class="contact-items"
target="_blank"
>
<i class="fas fa-phone"></i>
<div class="cta-text">
<h4>Phone</h4>
<span>9898363601</span>
</div>
</a>
</div>
</div>
<div class="col-xl-4 col-md-4 mb-30">
<div class="single-cta">
<a
href="mailto:[email protected]"
class="contact-items"
target="_blank"
>
<i class="far fa-envelope-open"></i>
<div class="cta-text">
<h4>E-Mail</h4>
<span>[email protected]</span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="copyright-area">
<div class="copyright-text">
<p>Copyright © 2024, All Rights Reserved</p>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<script>
AOS.init({
offset: 100,
duration: 900,
});
// Preloader script
document.addEventListener("DOMContentLoaded", function () {
setTimeout(function () {
document.querySelector(".preloader").style.display = "none";
}, 3000);
});
</script>
</body>
</html>