forked from I-Himanshu/CodeChamp-s-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1191 lines (1159 loc) · 40.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="description"
content="CodeChamp is the Community of Coding Enthusiasts,Where we Share Resources, Roadmaps and Opportunities Updates to explore technologies,Together we aim to explore the untouched world of technologies."
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>CodeChamp</title>
<link rel="icon" type="image/png" href="./images/logo.png" />
<!--bootstrap Css-->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
<!--external css-->
<link href="./style.css" rel="stylesheet" />
<!--bootstrap icons cdn-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
</head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-3EL4753RH2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-3EL4753RH2");
</script>
<!--Google ads-->
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1210592339079044"
crossorigin="anonymous"
></script>
<body>
<!--preloader starts-->
<div id="preloader">
<p class="preloader_text preloader_text1"></p>
<p class="preloader_text preloader_text2">TOGETHER</p>
</div>
<!--preloader ends-->
<!--navbar starts-->
<nav class="navbar navbar-expand-lg sticky-top bg-white" id="Navbar">
<div class="container-fluid">
<a class="navbar-brand ml-0 logo" href="#"
><img
src="./images/logo.png"
style="height: 40px; width: 80px; filter: brightness(120%)"
/></a>
<!--hamburger button for mobile view starts-->
<button
class="navbar-toggler hamburger"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!--hamburger button for mobile view ends-->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 nav-ul">
<li class="nav-item">
<a class="nav-link dark-anchor" aria-current="page" href="#"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="#fifth">About</a>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="#second">Events</a>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="#fourth">Team</a>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="#sixth">Opportunities</a>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="./internships.html"
>Internships / Jobs</a
>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="#feedback">Feedbacks</a>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="#tenth">Contact Us</a>
</li>
<div class="form-check form-switch d-flex align-items-center mx-2">
<input
type="checkbox"
class="checkbox"
id="checkbox"
onclick="darkModeToggler()"
/>
<label for="checkbox" class="label" id="toggle-switch">
<i
class="bi bi-sun fs-6"
style="font-size: 0.6rem !important"
></i>
<i
class="bi bi-moon fs-6"
style="font-size: 0.6rem !important"
></i>
<div class="ball"></div>
</label>
</div>
</ul>
</div>
</div>
</nav>
<!--navbar ends-->
<!--First intro container starts-->
<div class="container" id="first">
<div class="discription">
<h2 class="heading">CodeChamp</h2>
<p class="content">
CodeChamp is the Community of Coding Enthusiasts, where we provide
Resources, share Roadmaps ,and give numerous Opportunities Updates in the field of Competitive Programming,Development and Cyber Security.
Along with it,we organize various insightful Workshops, guidance Sessions for an apperentice to learn from
new. In one line,"Together we aim to explore the untouched world of
technology.
</p>
<br />
<!--<a href="https://lu.ma/opensource"><button class="common-button register" type="button"
style="margin-left: 5px;">
REGISTER FOR EVENT
</button></a>-->
<a href="https://discord.gg/vVM4hBKnHt"
><button class="common-button" type="button" style="margin-left: 5px">
JOIN US
</button></a
>
<br />
<br />
<p class="content">
Be a Part of our community and interact with like-minded people
</p>
</div>
<div class="image">
<img
class="intro-image"
src="./images/Animated Community Image.png"
alt="Community Image"
/>
</div>
</div>
<!--First intro container ends-->
<!--Events section starts-->
<div class="events mt-6" id="second">
<h1 class="heading text-center">Our Events</h1>
<hr />
<div class="event-cards container">
<div
class="card event common-card"
style="width: 20rem; margin-top: 20px"
>
<img
src="./images/Cyber Security Event.png"
class="card-img-top"
style="border-radius: 15px"
alt="Fullstack Banner"
/>
<div class="card-body home-card">
<a
href="https://youtu.be/IRcG4fAc_gU"
class="btn btn-primary rec-button common-button"
target="_blank"
>WATCH RECORDING</a
>
</div>
</div>
<div
class="card event common-card"
style="width: 20rem; margin-top: 20px"
>
<img
src="./images/Cp Event.jpeg"
class="card-img-top"
style="border-radius: 15px"
alt="Fullstack Banner"
/>
<div class="card-body home-card">
<a
href="https://youtu.be/phH3FrpGYjg"
class="btn btn-primary rec-button common-button"
target="_blank"
>WATCH RECORDING</a
>
</div>
</div>
<div
class="card event common-card"
style="width: 20rem; margin-top: 20px"
>
<img
src="./images/Android Session.jpeg"
class="card-img-top"
style="border-radius: 15px"
alt="Fullstack Banner"
/>
<div class="card-body home-card">
<a
href="https://youtu.be/_DnGURYqkDE"
class="btn btn-primary rec-button common-button"
target="_blank"
>WATCH RECORDING</a
>
</div>
</div>
</div>
</div>
<!--Events section ends-->
<br />
<br />
<div class="joinus mt-6" id="third">
<h1 class="heading text-center">Be a Part of Us</h1>
<hr />
<div class="container joinus-cards">
<a
href="https://www.linkedin.com/company/codechamp03/"
target="_blank"
rel="noreferrer"
class="joinus-anchor"
>
<div
class="card joinus-card common-card"
style="width: 18rem"
target="_blank"
>
<i class="bi bi-linkedin joinus-icons" style="color: #0077b5"></i>
<div class="card-body home-card">
<h3 class="card-title text-center">LinkedIn Page</h3>
<p class="card-text content">
Follow our LinkedIn page where we post some tech stuff and get
updated about our upcomng sessions.
</p>
</div>
</div>
</a>
<a
href="https://discord.gg/vVM4hBKnHt"
target="_blank"
rel="noreferrer"
class="joinus-anchor"
>
<div
class="card joinus-card common-card"
style="width: 18rem"
target="_blank"
>
<i class="bi bi-discord joinus-icons" style="color: #5865f2"></i>
<div class="card-body home-card">
<h3 class="card-title text-center">Discord Server</h3>
<p class="card-text content">
Join our Discord server to interact with the students around the
globe also, ask your doubts with our mentors.
</p>
</div>
</div>
</a>
<a
href="https://t.me/codechamp03"
target="_blank"
rel="noreferrer"
class="joinus-anchor"
>
<div
class="card joinus-card common-card"
style="width: 18rem"
target="_blank"
>
<i class="bi bi-telegram joinus-icons" style="color: #0088cc"></i>
<div class="card-body home-card">
<h3 class="card-title text-center">Telegram Channel</h3>
<p class="card-text content">
Join our telegram channel and get information about best
resources and stay updated about opportunities.
</p>
</div>
</div>
</a>
<a
href="https://www.instagram.com/codechamp03/"
target="_blank"
rel="noreferrer"
class="joinus-anchor"
>
<div
class="card joinus-card common-card"
style="width: 18rem"
target="_blank"
>
<i class="bi bi-instagram joinus-icons" style="color: #dd2a7b"></i>
<div class="card-body home-card">
<h3 class="card-title text-center">Instagram Page</h3>
<p class="card-text content">
Follow us on Instagram to get programming memes, technical
stuffs and short resources.
</p>
</div>
</div>
</a>
<a
href="https://github.com/DeveloperAshish8/CodeChamp-s-Website"
target="_blank"
rel="noreferrer"
class="joinus-anchor"
>
<div
class="card joinus-card common-card"
style="width: 18rem"
target="_blank"
>
<i class="bi bi-github joinus-icons" style="color: black"></i>
<div class="card-body home-card">
<h3 class="card-title text-center">Github</h3>
<p class="card-text content">
Want to contribute to our website, folk the repository from here
and start contributing.
</p>
</div>
</div>
</a>
<a
href="https://www.youtube.com/channel/UCw39myIHyYoICgsTh3cdYMQ"
target="_blank"
rel="noreferrer"
class="joinus-anchor"
>
<div
class="card joinus-card common-card"
style="width: 18rem"
target="_blank"
>
<i class="bi bi-youtube joinus-icons" style="color: red"></i>
<div class="card-body home-card">
<h3 class="card-title text-center">YouTube Channel</h3>
<p class="card-text content">
Subscribe our Channel on YouTube and get recorded sessions if
you missed them.
</p>
</div>
</div>
</a>
</div>
</div>
<br />
<br />
<!--Members info starts-->
<div class="mt-6" id="fourth">
<h1 class="heading text-center">Our Team Members</h1>
<hr />
<br />
<br />
<div
class="team-members carousel slide"
data-bs-interval="2000"
data-bs-ride="carousel"
>
<div
class="carousel-item card active common-card-2"
style="padding: 20px"
>
<div
class="card ml-4 common-card"
style="
width: 20rem;
border-radius: 15px;
display: inline-block;
margin-right: 80px;
"
>
<img
class="card-img-top team-image"
src="./images/ashish bw.jpeg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">Ashish Kumar</h4>
<p class="content text-center">Founder</p>
<a
href="https://www.linkedin.com/in/ashish-kumar-he-him-4566211a3/"
>
<i class="bi bi-linkedin" style="font-size: 1.5rem"></i
></a>
</div>
</div>
</div>
<div class="carousel-item card common-card-2" style="padding: 20px">
<div
class="card ml-4 common-card"
style="
width: 20rem;
border-radius: 15px;
display: inline-block;
margin-right: 80px;
"
>
<img
class="card-img-top team-image"
src="./images/user image.jpg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">Abhishek Anand</h4>
<p class="content text-center">Co-founder</p>
<a
style="margin-left: 10px"
href="https://www.linkedin.com/in/abhi-anand-b484b11a0"
>
<i
class="bi bi-linkedin"
style="font-size: 1.5rem"
target="_blank"
></i
></a>
</div>
</div>
</div>
<div class="carousel-item card common-card-2" style="padding: 20px">
<div
class="card ml-4 common-card"
style="
width: 20rem;
border-radius: 15px;
display: inline-block;
margin-right: 80px;
"
>
<img
class="card-img-top team-image"
src="./images/Subham image.jpeg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">Subham Kumar Jha</h4>
<p class="content text-center">Community Manager</p>
<a
style="margin-left: 10px"
href="https://www.linkedin.com/in/subham-kumar-355a63225"
target="_blank"
>
<i class="bi bi-linkedin" style="font-size: 1.5rem"></i
></a>
</div>
</div>
</div>
<div class="carousel-item card common-card-2" style="padding: 20px">
<div
class="card ml-4 common-card"
style="
width: 20rem;
border-radius: 15px;
display: inline-block;
margin-right: 80px;
"
>
<img
class="card-img-top team-image"
src="./images/Ayush image.jpg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">Ayush raj</h4>
<p class="content text-center">Content Manager</p>
<a
style="margin-left: 10px"
href="https://www.linkedin.com/in/ayush-raj-8bb362213"
target="_blank"
>
<i class="bi bi-linkedin" style="font-size: 1.5rem"></i
></a>
</div>
</div>
</div>
<div class="carousel-item card common-card-2" style="padding: 20px">
<div
class="card ml-4 common-card"
style="
width: 20rem;
border-radius: 15px;
display: inline-block;
margin-right: 80px;
"
>
<img
class="card-img-top team-image"
src="./images/Shruti Image.jpeg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">Shruti Agrawal</h4>
<p class="content text-center">Event Manager</p>
<a
style="margin-left: 10px"
href="https://www.linkedin.com/in/shruti-agrawal-7bb416243"
target="_blank"
>
<i class="bi bi-linkedin" style="font-size: 1.5rem"></i
></a>
</div>
</div>
</div>
<div class="carousel-item card common-card-2" style="padding: 20px">
<div
class="card ml-4 common-card"
style="
width: 20rem;
border-radius: 15px;
display: inline-block;
margin-right: 80px;
"
>
<img
class="card-img-top team-image"
src="./images/Sandesh image.jpeg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">Sandesh Kumar</h4>
<p class="content text-center">Web Development Team</p>
<a
style="margin-left: 10px"
href="https://www.linkedin.com/in/sandesh-kumar-0a7224234"
>
<i class="bi bi-linkedin" style="font-size: 1.5rem"></i
></a>
</div>
</div>
</div>
<div class="carousel-item card common-card-2" style="padding: 20px">
<div
class="card ml-4 common-card"
style="
width: 20rem;
border-radius: 15px;
display: inline-block;
margin-right: 80px;
"
>
<img
class="card-img-top team-image"
src="./images/user image.jpg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">Himanshu Kumar</h4>
<p class="content text-center">Web Development Team</p>
<a
style="margin-left: 10px"
href="https://www.linkedin.com/in/i-himanshu"
>
<i class="bi bi-linkedin" style="font-size: 1.5rem"></i
></a>
</div>
</div>
</div>
<div class="carousel-item card common-card-2" style="padding: 20px">
<div
class="card ml-4 common-card"
style="
width: 20rem;
border-radius: 15px;
display: inline-block;
margin-right: 80px;
"
>
<img
class="card-img-top team-image"
src="./images/Anjali image.jpeg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">Anjali Singh</h4>
<p class="content text-center">Graphics Designer</p>
<a
style="margin-left: 10px"
href="https://www.linkedin.com/in/anjali-singh-2a5109231/"
>
<i class="bi bi-linkedin" style="font-size: 1.5rem"></i
></a>
</div>
</div>
</div>
</div>
</div>
<!--members info ends-->
<br />
<!--what we offer starts-->
<div class="WeOffers" id="fifth">
<h1 class="heading text-center">Why to Join Us?</h1>
<hr />
<br />
<div class="WhyToJoin">
<ul class="content mobile-view" id="Content">
<li>Interaction with Students around the globe.</li>
<li>Mentors support and guide.</li>
<li>Webinars and workshops by Experts.</li>
<li>Keeps to updated about latest opportunities.</li>
<li>Hackathons and Intership Opportunities.</li>
<li>Complete learning Environment.</li>
</ul>
<div class="image">
<img
src="./images/what we offer image.jpg"
alt="What we Offer Image"
/>
</div>
</div>
</div>
<!--what we offer ends-->
<br />
<!--Opportunities section starts-->
<div class="events mt-6" id="sixth">
<h1 class="heading text-center">Opportunities</h1>
<hr />
<div class="opportunities container">
<div
class="card event common-card"
style="width: 20rem; margin-top: 20px"
>
<img
src="./images/Join us as Mentor.jpeg"
class="card-img-top"
style="border-radius: 15px"
alt="Fullstack Banner"
/>
<div class="card-body home-card">
<h5 class="card-title text-center">Join Us As Mentor</h5>
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSc35m_65K3moo82K5it55Cae0zUtJVjpIaOK66ProF6UDaGtw/viewform?usp=sf_link"
class="btn btn-primary Intrested common-button"
>INTRESTED</a
>
</div>
</div>
<div
class="card event common-card"
style="width: 20rem; margin-top: 20px"
>
<img
src="./images/Join our core Team.jpeg"
class="card-img-top"
style="border-radius: 15px"
alt="Fullstack Banner"
/>
<div class="card-body home-card">
<h5 class="card-title text-center">Join Our Core Team</h5>
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSds0RlPkF6oz7q5lmpeeC3D-UiRjhM0DwlW-zvRAKSz4kZu5w/viewform?usp=sf_link"
class="btn btn-primary Intrested common-button"
>INTRESTED</a
>
</div>
</div>
<div
class="card event common-card"
style="width: 20rem; margin-top: 20px"
>
<img
src="./images/Volunteer banner.jpeg"
class="card-img-top"
style="border-radius: 15px"
alt="Fullstack Banner"
/>
<div class="card-body home-card">
<h5 class="card-title text-center">Volunteer Us</h5>
<a href="" class="btn btn-primary Intrested common-button"
>HIRING SOON</a
>
</div>
</div>
</div>
</div>
<!--Opportunities section Ends-->
<br />
<br />
<!--Feedback section starts-->
<div class="feedback-section" id="seventh">
<h1 class="heading text-center">Our Beloved Members Feedbacks</h1>
<hr />
<br />
<br />
<div class="feedbacks" id="feedback">
<div
class="card common-card"
style="width: 19rem; border-radius: 15px; padding: 10px"
>
<img
class="card-img-top feedback-image"
src="./images/Ayush kumar image.jpg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">Ayush Kumar</h4>
<p class="content text-center">
"A community is always helpful for the new learners, CodeChamp
keeps me updated about best learning resources, opportunities
etc."
</p>
</div>
</div>
<div
class="card common-card"
style="width: 19rem; border-radius: 15px; padding: 10px"
>
<img
class="card-img-top feedback-image"
src="./images/user image.jpg"
alt="Card image cap"
/>
<div class="card-body home-card">
<h4 class="card-title text-center">You</h4>
<p class="content text-center">
You can also be featured in our website, share about your
experience with CodeChamp at [email protected]
</p>
</div>
</div>
</div>
</div>
<!--Feedback section ends-->
<br />
<br />
<!--collaborations starts-->
<div class="collaboration" id="eighth">
<h1 class="heading text-center">Our Collaborations</h1>
<hr />
<br />
<br />
<div class="feedbacks">
<div class="partner-logo">
<img
src="./images/Bepractical logo.webp"
alt="Bepractical"
width="200px"
height="80px"
style="margin-top: 40px"
/>
</div>
<div class="partner-logo">
<img
src="./images/Coding Blocks.png"
alt="Coding Blocks"
width="250px"
height="100px"
style="margin-top: 40px"
/>
</div>
<div class="partner-logo">
<img
src="./images/GDSC Gaya College of Engineering vertical color (3).png"
alt="Coding Blocks"
width="250px"
height="150px"
style="margin-top: 25px"
/>
</div>
</div>
</div>
<!--collaborations ends-->
<br />
<br />
<!--FAQ starts-->
<div class="FAQ" id="ninth">
<h1 class="heading text-center">FAQs</h1>
<hr />
<br />
<div
class="accordion"
id="accordionExample"
style="width: 70%; margin: auto"
>
<div class="accordion-item faq" style="margin-top: 2rem">
<h2 class="accordion-header" id="headingOne">
<button
class="accordion-button collapsed faq-button"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseOne"
aria-expanded="false"
aria-controls="collapseOne"
>
What is CodeChamp?
</button>
</h2>
<div
id="collapseOne"
class="accordion-collapse collapse"
aria-labelledby="headingOne"
data-bs-parent="#accordionExample"
>
<div class="accordion-body content">
CodeChamp is the Community of Coding Enthusiasts, Where we Share
Resources, Roadmaps and Opportunities Updates to explore
technologies also, We organize various Workshops, Sessions for our
folks to learn new things.
</div>
</div>
</div>
<div class="accordion-item faq" style="margin-top: 3rem">
<h2 class="accordion-header" id="headingTwo">
<button
class="accordion-button collapsed faq-button"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseTwo"
aria-expanded="false"
aria-controls="collapseTwo"
>
Why you should join CodeChamp?
</button>
</h2>
<div
id="collapseTwo"
class="accordion-collapse collapse"
aria-labelledby="headingTwo"
data-bs-parent="#accordionExample"
>
<div class="accordion-body content">
Joining our community gives you exposure to the like minded
peoples, you can ask your doubts with our mentors one to one on
our discord server.
</div>
</div>
</div>
<div class="accordion-item faq" style="margin-top: 3rem">
<h2 class="accordion-header" id="headingThree">
<button
class="accordion-button collapsed faq-button"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseThree"
aria-expanded="false"
aria-controls="collapseThree"
>
How to be our beloved member?
</button>
</h2>
<div
id="collapseThree"
class="accordion-collapse collapse"
aria-labelledby="headingThree"
data-bs-parent="#accordionExample"
>
<div class="accordion-body content">
You can join us on our discord server by
<a href="https://discord.gg/vVM4hBKnHt">clicking Here</a> also you
can follow our LinkedIn page and stay updated about our new
sessions.
</div>
</div>
</div>
<div class="accordion-item faq" style="margin-top: 3rem">
<h2 class="accordion-header" id="headingFour">
<button
class="accordion-button collapsed faq-button"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseFour"
aria-expanded="false"
aria-controls="collapseFour"
>
How to join our Team?
</button>
</h2>
<div
id="collapseFour"
class="accordion-collapse collapse"
aria-labelledby="headingFour"
data-bs-parent="#accordionExample"
>
<div class="accordion-body content">
You can join our core team or can volunteer us by
<a href="#sixth">clicking Here</a> . Joining our team means you
are willing to work for our community members.
</div>
</div>
</div>
</div>
</div>
<!--FAQ ends-->
<br />
<br />
<br />
<!--Contact us starts-->
<div class="contact-us" id="tenth">
<h1 class="heading text-center">Contact-Us</h1>
<hr />
<br />
<div class="contact container">
<div class="form-container">
<form action="https://formspree.io/f/xbjbrgpv" method="POST">
<input
class="form-control"
type="email"
name="email"
placeholder="[email protected]"
style="margin-top: 20px"
/>
<input
class="form-control"
type="text"
name="name"
placeholder="Your Name"
style="margin-top: 20px"
required
/>
<input
type="text"
class="form-control"
placeholder="Subject"
required
/>
<textarea
class="form-control"
name="message"
placeholder="Write Your message here"
style="margin-top: 20px"
></textarea>
<div style="text-align: center">
<input
class="common-button"
type="submit"
style="margin-top: 20px"
/>
</div>
</form>
</div>
<img
class="intro-image contact-us-image"
src="./images/contact us.png"
alt="contact us image"
/>
</div>
</div>
<!--Contact us ends-->
<br />
<a
href="#"
id="toTopBtn"
class="cd-top text-replace js-cd-top cd-top--is-visible cd-top--fade-out"
data-abc="true"
></a>
<footer>
<div
class="text-center"
style="color: #fd7014; padding-top: 30px; font-weight: 800"
>
<p style="font-size: 20px">Made with ❤️ by us.</p>
</div>
<div class="main-content">
<div class="about" style="margin-top: 20px">
<h4 class="heading footer-content text-center">CodeChamp</h4>
<br />