-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
814 lines (702 loc) · 43.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<!-- CSS Files -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="color-1.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Style Switch -->
<link rel="stylesheet" href="color-1.css" class="alternate-style" title="color-1" disabled>
<link rel="stylesheet" href="color-2.css" class="alternate-style" title="color-2" disabled>
<link rel="stylesheet" href="color-3.css" class="alternate-style" title="color-3" disabled>
<link rel="stylesheet" href="color-4.css" class="alternate-style" title="color-4" disabled>
<link rel="stylesheet" href="color-5.css" class="alternate-style" title="color-5" disabled>
<link rel="stylesheet" href="style-switcher.css">
</head>
<body>
<!-- Main-container start -->
<div class="main-container">
<!-- Side-Bar Start -->
<div class="side-bar">
<div class="logo">
<a href="#"><span>P</span>ortfolio</a>
</div>
<div class="nav-toggler">
<span></span>
</div>
<ul class="nav">
<li><a href="#home" class="active" onclick="Getcolor(this)"><i class="fa fa-home"></i>Home</a></li>
<li><a href="#about" onclick="Getcolor(this)"><i class="fa fa-user"></i>About</a></li>
<li><a href="#services" onclick="Getcolor(this)"><i class="fa fa-list"></i>Service</a></li>
<li><a href="#portfolio" onclick="Getcolor(this)"><i class="fa fa-briefcase"></i>Portfolio</a></li>
<li><a href="#contact" onclick="Getcolor(this)"><i class="fa fa-comments"></i>Contact</a></li>
</ul>
</div>
<!-- Side-Bar End -->
<!-- Main-content start -->
<div class="main-content">
<!-- Home-section Start -->
<section class="home section " id="home">
<div class="container">
<div class="row">
<div class="home-info padd-15">
<h3 class="hello">
Hello, my name is <span class="name">Grahish</span>
</h3>
<h3 class="my-proffesion"> I am a <span class="job">Student</span></h3>
<p>I am a second-year computer science student with experience in web development and data
structures and algorithms. I am also interested in learning android development and
machine learning.</p>
<a href="#about" class="btn hire-me ">More About me</a>
<!--could also use button tag ig-->
</div>
<div class="home-img padd-15">
<img src="images/hero.jpg" alt="">
</div>
</div>
</div>
</section>
<!-- Home Section End -->
<!-- About Section Start -->
<section class="about section " id="about">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>About me</h2>
</div>
</div>
<div class="row">
<div class="about-content padd-15">
<div class="row">
<div class="about-text padd-15">
<h3>I am Grahish and I am a <span>Web Developer</span></h3>
<p>Hello, I’m Grahish, a computer science student and a web developer from Thane,
India. I create responsive and user-friendly websites using HTML, CSS,
JavaScript, and PHP. You can check out some of my work in the portfolio section
of this site. I also have strong leadership and communication skills, which I
have demonstrated by leading several web development teams in my college
projects. I’m currently learning app development, so I can expand my skills and
create apps for my websites in the future. Besides coding, I’m also passionate
about music and play the guitar in my spare time. If you’re looking for a web
developer who can deliver quality work with creativity and professionalism,
you’ve come to the right place. Please feel free to contact me . I look forward
to hearing from you soon</p>
</div>
</div>
<div class="row">
<div class="personal-info padd-15">
<div class="row">
<div class="info-item padd-15">
<p>Birthday: <span>30 Dec 2004</span></p>
</div>
<div class="info-item padd-15">
<p>Age: <span>20</span></p>
</div>
<div class="info-item padd-15">
<p>Whatsapp: <span>9370237965</span></p>
</div>
<div class="info-item padd-15">
<p>Email: <span>[email protected]</span></p>
</div>
<div class="info-item padd-15">
<p>Degree: <span>upcoming b-tech</span></p>
</div>
<div class="info-item padd-15">
<p>Phone: <span>+91 9370237965</span></p>
</div>
<div class="info-item padd-15">
<p>City: <span>Thane</span></p>
</div>
<div class="info-item padd-15">
<p>Internship: <span>Available</span></p>
</div>
</div>
<div class="row">
<div class="buttons padd-15">
<a href="#" class="btn">Download CV</a>
<a href="#contact" class="btn hire-me">Hire Me</a>
</div>
</div>
</div>
<!-- Showing Statistic percentage -->
<div class="skills padd-15">
<div class="row">
<div class="skill-item padd-15">
<h5>HTML</h5>
<div class="progress">
<div class="progress-in" style="width:90%"></div>
<div class="skill-percent">90%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>CSS</h5>
<div class="progress">
<div class="progress-in" style="width:76%"></div>
<div class="skill-percent">76%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>JS</h5>
<div class="progress">
<div class="progress-in" style="width:56%"></div>
<div class="skill-percent">56%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>PHP</h5>
<div class="progress">
<div class="progress-in" style="width:66%"></div>
<div class="skill-percent">66%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>DSA</h5>
<div class="progress">
<div class="progress-in" style="width:40%"></div>
<div class="skill-percent">40%</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="education padd-15">
<h3 class="title">Education</h3>
<div class="row">
<div class="timeline-box padd-15">
<div class="timeline shadow-dark">
<!-- == timeline item== -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> 2022-2026
</h3>
<h4 class="timeline-title">Completing B-tech Degree in Computer
Science</h4>
<p class="timeline-text">I am currently pursuing my Bachelor's
degree in Computer Science at Pillai College of Engineering,
Navi Mumbai, with an expected completion date in 2026. . My
education has equipped me with a solid foundation in programming
languages, software development, and computer systems, preparing
me for a successful career in the dynamic field of technology. I
am excited to continue exploring new concepts, collaborating on
innovative projects, and leveraging my skills to make meaningful
contributions to the tech industry.</p>
</div>
<!-- == timeline item== -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> 2020-2022
</h3>
<h4 class="timeline-title">Higher Secondary</h4>
<p class="timeline-text">
I completed my Higher Secondary education from Sankalp Academy
School in Kota. Those years were challenging academically, yet I
persevered and achieved an impressive 80% in my 12th CBSE exams.
Being in Kota, I faced considerable academic pressure, but I
managed to channel that pressure into positive outcomes. These
years taught me invaluable lessons in maturity and
understanding, helping me develop a strong foundation for my
future academic and personal endeavors.</p>
</div>
<!-- == timeline item== -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> 2019-2020
</h3>
<h4 class="timeline-title">Secondary-School</h4>
<p class="timeline-text">
I have Done my Secondary-School in Narayana E Techno in Mumbai
Marol.
During my time at Narayana E Techno , I
experienced some of the best days of my life. I met amazing
schoolmates and learned the art of balancing academics and
friendships. I achieved a remarkable 91% in my 10th standard.
Additionally, I honed my leadership skills as the vice-captain
of the Blue House team</p>
</div>
</div>
</div>
</div>
</div>
<div class="experience padd-15">
<h3 class="title">Experience</h3>
<div class="row">
<div class="timeline-box padd-15">
<div class="timeline shadow-dark">
<!-- == timeline item== -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> 2023-2024
</h3>
<h4 class="timeline-title">College Web Development Project </h4>
<p class="timeline-text">
During my second year of college, I engaged in a significant web
project that showcased my skills and teamwork. Our objective was
to create a website aiding users in managing their diet while
minimizing food waste. Working alongside three teammates, I took
the lead and functioned as the Full stack developer for the
project. We utilized HTML, CSS, JavaScript, and PHP in our web
development process, culminating in the successful completion of
our website.</p>
</div>
<!-- == timeline item== -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> 2022-2023
</h3>
<h4 class="timeline-title">SIH Project</h4>
<p class="timeline-text">
In my second year, I participated in SIH 2023 and contributed to
a project aimed at filtering internet content to provide
students with the best study materials. Additionally, we
designed the website to offer personalized mentorship to
students. As the team leader, I took on the role of a frontend
developer. Our project, named "Uttam Sikhska," was a testament
to our dedication to enhancing the learning experience for
students.</p>
</div>
<!-- == timeline item== -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> 2023-2024
</h3>
<h4 class="timeline-title">Personal Project </h4>
<p class="timeline-text">As an aspiring and evolving developer, I
find great joy in working on personal projects. To date, I have
completed six distinct projects using JavaScript. Recently, I
undertook the development of a Content Management Site that
allows users to create, delete, and update their posts. The
website assigns two distinct roles to users: subscribers and
administrators. For more detailed information on this project
and others, please refer to the Portfolio section</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!--Services Section Start -->
<section class="service section" id="services">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>Services</h2>
</div>
</div>
<div class="row">
<!-- Services item start -->
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fa fa-mobile-alt"></i>
</div>
<h4>App development</h4>
<p>I can make app for users , as per their need
</p>
</div>
</div>
<!-- Services item end -->
<!-- Services item start -->
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fa fa-palette"></i>
</div>
<h4>creativity</h4>
<p>I can help your company in creative aspect like logo designing,etc.
</p>
</div>
</div>
<!-- Services item end -->
<!-- Services item start -->
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fa fa-code"></i>
</div>
<h4>Coding</h4>
<p>I can help your software with advance level of DSA.
</p>
</div>
</div>
<!-- Services item end -->
<!-- Services item start -->
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fa fa-search"></i>
</div>
<h4>Web development</h4>
<p>I can create a full fuctional website for your need which include every thing from
frontend to backend.
</p>
</div>
</div>
<!-- Services item end -->
<!-- Services item start -->
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fa fa-bullhorn"></i>
</div>
<h4>Marketing</h4>
<p>I can help promoting your product by some of the best marketing strategies like
customer retention.
</p>
</div>
</div>
<!-- Services item end -->
<!-- Services item start -->
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fas fa-file-powerpoint"></i>
</div>
<h4>PPT Makeing</h4>
<p>I can create beautifule ppt for your need in teaching , or presenting any idea.
</p>
</div>
</div>
<!-- Services item end -->
</div>
</div>
</section>
<!--Services Section End -->
<!--Portfolio Section Start -->
<section class="portfolio section" id="portfolio">
<div class="container" id="blur">
<div class="row">
<div class="section-title padd-15">
<h2>Portfolio</h2>
</div>
</div>
<div class="row">
<div class="portfolio-heading padd-15">
<h2>My Work (Click to More Info) :- </h2>
</div>
</div>
<div class="row">
<!-- Portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark" onclick="toggle1()">
<div class="portfolio-img">
<img src="images/Spotify.png" alt="">
</div>
</div>
</div>
<!-- Portfolio item end -->
<!-- Portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark" onclick="toggle2()">
<div class="portfolio-img">
<img src="images/Netflix (2).png" alt="">
</div>
</div>
</div>
<!-- Portfolio item end -->
<!-- Portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark" onclick="toggle3()">
<div class="portfolio-img">
<img src="images/CMS.png" alt="">
</div>
</div>
</div>
<!-- Portfolio item end -->
<!-- Portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark" onclick="toggle4()">
<div class="portfolio-img">
<img src="images/Rasoi Rescue.png" alt="">
</div>
</div>
</div>
<!-- Portfolio item end -->
<!-- Portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark" onclick="toggle5()">
<div class="portfolio-img">
<img src="images/Uttam-Siksha-Login-page.png" alt="">
</div>
</div>
</div>
<!-- Portfolio item end -->
<!-- Portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark" onclick="toggle6()">
<div class="portfolio-img">
<img src="images/password-manager.png" alt="">
</div>
</div>
</div>
<!-- Portfolio item end -->
</div>
</div>
<div class="popup popup1">
<div class="popup-head">
<video id="myVideo" src="videos/Spotify-Demo.mp4" controls style="border-radius: 10px; border: 6px solid black ;">spotify</video>
<h2>Spotify Clone</h2>
</div>
<p>
Introducing my Spotify clone—a project aimed at boosting my JavaScript skills. It mimics
Spotify's key features: playing songs, managing playlists, adjusting volume, and skipping song
sections. Developed over five days, it showcases my hands-on JavaScript expertise and commitment
to creating engaging web experiences.
</p>
<button type="submit" onclick="toggle1()">Close</button>
</div>
<div class="popup popup2">
<div class="popup-head">
<video id="myVideo" src="videos/Netflix-Clone.mp4" controls style="border-radius: 10px; border: 6px solid black ;">Netflix-clone</video>
<h2>Netflix-Clone</h2>
</div>
<p>
Presenting my CSS project—a Netflix homepage clone. Completed in just four hours, this endeavor
provided a deep dive into flexbox and grid, pivotal concepts in CSS. Enhancing my frontend
development skills, this project exemplifies my dedication to mastering web design
</p>
<button type="submit" onclick="toggle2()">Close</button>
</div>
<div class="popup popup3">
<div class="popup-head">
<video id="myVideo" src="videos/CMS-Demo.mp4" controls style="border-radius: 10px; border: 6px solid black ;">CMS</video>
<h2>Content-Management-Site</h2>
</div>
<p>
Introducing my Content Management System—a comprehensive project developed over approximately
one and a half months. Crafted solely by me using HTML, CSS, JavaScript, and Bootstrap, this
website embodies various advanced features. Users are categorized into admins and subscribers,
each with distinct functionalities. Subscribers enjoy posting and managing content, while admins
wield additional powers like post deletion, updates, and content oversight. Notable features
include multilingual support and a robust password recovery system with email verification. This
project showcases my proficiency in web development and highlights my ability to create dynamic
and user-friendly interfaces.
</p>
<button type="submit" onclick="toggle3()">Close</button>
</div>
<div class="popup popup4">
<div class="popup-head">
<video id="myVideo" src="videos/Rasoi Rescue Demo.mp4" controls style="border-radius: 10px; border: 6px solid black ;">Rasoi-Rescue</video>
<h2>Rasoi-Rescue</h2>
</div>
<p>
Originally conceived as a collaborative college endeavor with three team members, I later took the reins to complete this project independently. This website, titled "Rasoi Rescue," is designed to help users cultivate healthy eating habits while reducing food waste. It offers users a comprehensive weekly meal plan tailored to their tastes, complete with recipes and detailed nutritional information. The Figma design for this website was meticulously crafted by Miss Nirmit Borole<a href="https://www.linkedin.com/in/nirmiti-borole-375490153/">(Nirmiti-Linkdn Profile)</a> , a skilled app developer and UI/UX designer. Currently in development, I am actively enhancing its features, such as implementing a feature to track users' favorite recipes. This project not only reflects my dedication to promoting health-conscious practices but also showcases my ability to collaborate with industry professionals for a seamless user experience
</p>
<button type="submit" onclick="toggle4()">Close</button>
</div>
<div class="popup popup5">
<div class="popup-head">
<video id="myVideo" src="videos/" style="border-radius: 10px; border: 6px solid black ;">video</video>
<h2>Uttam-Siksha</h2>
</div>
<p>
In my second year, I participated in SIH 2023 and contributed to
a project aimed at filtering internet content to provide
students with the best study materials. Additionally, we
designed the website to offer personalized mentorship to
students. As the team leader, I took on the role of a frontend
developer. Our project, named "Uttam Sikhska," was a testament
to our dedication to enhancing the learning experience for
students.
</p>
<button type="submit" onclick="toggle5()">Close</button>
</div>
<div class="popup popup6">
<div class="popup-head">
<video id="myVideo" src="videos/Password-Manager.mp4" alt="video" controls width="500px" style="border-radius: 10px; border: 6px solid black ;">Password-Manage</video>
<h2>Password-Manage</h2>
</div>
<p>
As a computer science student, I recognize the criticality of robust password management. Therefore, I designed a password manager web application. This platform allows users not only to create complex passwords but also to store them securely. When users revisit the site, they need to input their self-generated master password. If correct, they gain access to all their stored passwords. This approach simplifies password management by requiring users to remember only one password while ensuring the security of their credentials.
</p>
<button type="submit" onclick="toggle6()">Close</button>
</div>
</section>
<!--Portfolio Section End -->
<!--Contact Section Start -->
<section class="contact section" id="contact">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>Contact Me</h2>
</div>
</div>
<h3 class="contact-title padd-15">Feel Free To Question Me</h3>
<h4 class="contact-sub-title padd-15">I am ready to help you with anything you need in my Expertise
</h4>
<div class="row">
<!-- contact items start -->
<div class="contact-info-item padd-15">
<div class="icon">
<i class="fa fa-phone"></i>
</div>
<h4>Call me </h4>
<p>+91 9370237965</p>
</div>
<!-- contact items end -->
<!-- contact items start -->
<div class="contact-info-item padd-15">
<div class="icon">
<i class="fa fa-map-marker-alt"></i>
</div>
<h4>College</h4>
<p>Pillai College Of Engineeing</p>
</div>
<!-- contact items end -->
<!-- contact items start -->
<div class="contact-info-item padd-15">
<div class="icon">
<i class="fa fa-envelope"></i>
</div>
<h4>G-mail</h4>
<p>[email protected]</p>
</div>
<!-- contact items end -->
<!-- contact items start -->
<div class="contact-info-item padd-15">
<div class="icon">
<i class="fab fa-whatsapp "></i>
</div>
<h4>Whatsapp </h4>
<p>+91 9370237965</p>
</div>
<!-- contact items end -->
</div>
<h3 class="contact-title padd-15">SEND ME AN EMAIL</h3>
<h4 class="contact-sub-title padd-15">I AM VERY RESPONSIVE TO MESSAGES</h4>
<!-- contact form -->
<div class="row">
<div class="contact-form padd-15">
<div class="row">
<div class="form-item col-6 padd-15">
<div class="form-group">
<input type="text" class="form-control" placeholder="Name">
</div>
</div>
<div class="form-item col-6 padd-15">
<div class="form-group">
<input type="email" class="form-control" placeholder="Email">
</div>
</div>
</div>
<div class="row">
<div class="form-item col-12 padd-15">
<div class="form-group">
<input type="email" class="form-control" placeholder="Subject">
</div>
</div>
</div>
<div class="row">
<div class="form-item col-12 padd-15">
<div class="form-group">
<textarea name="" class="form-control" id="" placeholder="Message"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="form-item col-12 padd-15">
<button type="submit" class="but">Send Message</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Contact Section End -->
</div>
<!-- Main-content end -->
</div>
<!-- Main-container End -->
<!-- Style Switcher Start -->
<div class="style-switcher">
<div class="style-switcher-toggler s-icon">
<i class="fas fa-cog fa-spin"></i>
</div>
<div class="day-night s-icon">
<i class="fas "></i>
</div>
<h4>Theme Color</h4>
<div class="color">
<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>
<!-- Style Switcher End -->
<!-- JS Files -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.1.0/typed.umd.js"
integrity="sha512-+2pW8xXU/rNr7VS+H62aqapfRpqFwnSQh9ap6THjsm41AxgA0MhFRtfrABS+Lx2KHJn82UOrnBKhjZOXpom2LQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
<script src="style-switcher.js"></script>
<script>
function toggle() {
}
function toggle1() {
var blur = document.getElementById('blur');
blur.classList.toggle('active');
var popup = document.getElementsByClassName('popup')[0];
popup.classList.toggle('active');
var video = document.getElementById('myVideo');
video.pause();
}
function toggle2() {
var blur = document.getElementById('blur');
blur.classList.toggle('active');
var popup = document.getElementsByClassName('popup')[1];
popup.classList.toggle('active');
var video = document.getElementById('myVideo');
video.pause();
}
function toggle3() {
var blur = document.getElementById('blur');
blur.classList.toggle('active');
var popup = document.getElementsByClassName('popup')[2];
popup.classList.toggle('active');
var video = document.getElementById('myVideo');
video.pause();
}
function toggle4() {
var blur = document.getElementById('blur');
blur.classList.toggle('active');
var popup = document.getElementsByClassName('popup')[3];
popup.classList.toggle('active');
var video = document.getElementById('myVideo');
video.pause();
}
function toggle5() {
var blur = document.getElementById('blur');
blur.classList.toggle('active');
var popup = document.getElementsByClassName('popup')[4];
popup.classList.toggle('active');
var video = document.getElementById('myVideo');
video.pause();
}
function toggle6() {
var blur = document.getElementById('blur');
blur.classList.toggle('active');
var popup = document.getElementsByClassName('popup')[5];
popup.classList.toggle('active');
var video = document.getElementById('myVideo');
video.pause();
}
</script>
</body>
</html>