-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1028 lines (897 loc) · 33.9 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">
<!-- Hello -->
<head>
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<!-- MDB -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.css" rel="stylesheet" />
<title>CollegeBuddy </title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./assets/css/bootstrap.min.css">
<!-- Icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./assets/fonts/line-icons.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Owl carousel -->
<link rel="stylesheet" href="./assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="./assets/css/owl.theme.css">
<!--Swiper JS-->
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<link rel="stylesheet" href="./assets/css/swipper.css">
<!-- Animate -->
<link rel="stylesheet" href="./assets/css/animate.css">
<!-- animate-on-scroll -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!-- Main Style -->
<link rel="stylesheet" href="./assets/css/blog.css">
<link rel="stylesheet" href="./assets/css/oppurtunity.css">
<link rel="stylesheet" href="./assets/css/main.css">
<!-- CONTACT-SECTION -->
<link rel="stylesheet" href="./assets/css/contactSection.css">
<!-- Responsive Style -->
<link rel="stylesheet" href="./assets/css/responsive.css">
<link rel="shortcut icon" href="./assets/img/test.png" type="image/x-png">
<!-- darkmode css -->
<link rel="stylesheet" href="./assets/css/darkmode.css">
<!-- javascript for the fetching contributors form github api -->
<script src="./JS/index.js" async defer></script>
<!-- counter imports -->
<script src="assets/js/jquery-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>
<script src="https://bfintal.github.io/Counter-Up/jquery.counterup.min.js"></script>
<!-- counter imports end-->
<!-- animate on scroll import -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!-- animate on scroll import end -->
</head>
<body>
<!-- Header Area wrapper Starts -->
<header id="header-wrap">
<!-- Navbar Start -->
<nav class="navbar navbar-expand-md bg-white fixed-top scrolling-navbar">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<a href="index.html" class="navbar-brand"> <img src="./assets/img/test.png"
alt="CollegeBuddy-Community-Website logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="lni-menu"></i>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto w-75 justify-content-end clearfix" style="text-align: center;">
<li class="nav-item active">
<a class="nav-link" href="#hero-area">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#resources">
Resources
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#opportunity">
Events
</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://codepreview.vercel.app/">
CodeEditor
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#testimonial">
Testimonals
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">
Contact
</a>
</li>
<li class="nav-item">
</li>
</ul>
</div>
<a href="Login.html" target="_blank" style="position: absolute; right: 3rem;" class="btn btn-common">
<i class="fa fa-sharp fa-solid fa-graduation-cap"></i>
Sign In</i></a>
</div>
</nav>
<!-- Navbar End -->
<!-- Hero Area Start -->
<div id="hero-area" class="hero-area-bg">
<div class="container">
<div class="row">
<div class="col-lg-7 col-md-12 col-sm-12 col-xs-12">
<div class="contents">
<h2>CollegeBuddy </h2>
<p>Welcome to CollegeBuddy! Your Buddy for all you college needs. We offer educational
resources to help you navigate through
your college life. Additionally, we list events on various emerging technologies
and domains, and provide
information about employment opportunities.
<div class="header-button" data-aos="fade-right" data-aos-duration="2000">
<a href="https://www.linkedin.com/groups/9206025/" target="_blank"
class="btn btn-common">
<i class="fab fa-linkedin"></i>
Join
Now</i></a>
<a href="#resources" class="btn btn-outline-warning btn-common video-popup">
<i class=" fa fa-sharp fa-solid fa-graduation-cap"></i>Learn
More</i></a>
</div>
<br>Join the LinkedIn page for interaction with developers from all over India.
</p>
<br>
</div>
</div>
<div class="col-lg-5 col-md-12 col-sm-12 col-xs-12">
<div class="intro-img">
<img class="img-fluid" src="assets/img/Marketing-pana.png"
alt="Introduction mobile picture">
</div>
</div>
</div>
</div>
</div>
<!-- Hero Area End -->
</header>
<!-- Header Area wrapper End -->
<br> <br> <br>
<!-- Resources start -->
<section id="resources" class="section-padding">
<div class="section-header text-center" data-aos="fade-up" data-aos-duration="1500">
<h3 class="section-title wow fadeInDown" data-wow-delay="0.3s">Resources</h3>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<br>
<div class="oppurtunity_section" style="margin: 0% 15%;">
<div class="card">
<img class="card-img-top" src="./assets/img/logo1.jpg" alt="GDSC Image">
<div class="card-body">
<h5 class="card-title text_dark text-center">First Year</h5>
<a href="./1stYear.html" target="_blank" class="btn btn-common opportunity_btn" type="button">
Expand
</a>
<br> <br>
</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="./assets/img/logo2.jpg" alt="GDSC Image">
<div class="card-body">
<h5 class="card-title text_dark text-center">Second Year</h5>
<a href="./1stYear.html" target="_blank" class="btn btn-common opportunity_btn" type="button">
Expand
</a>
<br> <br>
</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="./assets/img/logo3.jpg" alt="Spark-a-thon image">
<div class="card-body">
<h5 class="card-title text_dark text-center">Third Year</h5>
<a href="./1stYear.html" target="_blank" class="btn btn-common opportunity_btn" type="button">
Expand
</a>
<br> <br>
</p>
</div>
</div>
</div>
<!-- --------------------- -->
<br>
<br>
<div class="oppurtunity_section" style="margin: 0% 15%;">
<div class="card">
<img class="card-img-top" src="./assets/img/cgpa.png" alt="GDSC Image">
<div class="card-body">
<h5 class="card-title text_dark text-center">CGPA Calculator</h5>
<a href="./CGPA/index.html" target="_blank" class="btn btn-common opportunity_btn" type="button">
Expand
</a>
<br> <br>
</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="./assets/img/logo4.jpg" alt="Winter fest 2022 image">
<div class="card-body">
<h5 class="card-title text_dark text-center">Fourth Year</h5>
<a href="./1stYear.html" target="_blank" class="btn btn-common opportunity_btn" type="button">
Expand
</a>
<br> <br>
</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="./assets/img/opp.jpg" alt="Winter fest 2022 image">
<div class="card-body">
<h5 class="card-title text_dark text-center">Opportunities 🧑💻</h5>
<a href="./opportunity.html" class="btn btn-common opportunity_btn" type="button">
Expand
</a>
<br> <br>
</p>
</div>
</div>
</div>
<!-- --------------------- -->
<br>
<br>
</section>
<!-- Resources end -->
<!-- Services Section Start -->
<section id="services" class="section-padding">
<div class="container">
<div class="section-header text-center" data-aos="fade-up" data-aos-duration="1500">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Join Us Here</h2>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<div class="row">
<!-- Services item -->
<div class="col-md-6 col-lg-4 col-xs-12" data-aos="fade-up" data-aos-duration="1500">
<div class="services-item wow fadeInRight" data-wow-delay="0.9s">
<div class="icon">
<a href="https://www.linkedin.com/groups/9206025/" target="_blank">
<i class="fab fa-linkedin" style="color: #0A66C2;"
onmouseover="this.style.color='white'" onmouseout="this.style.color='#0A66C2'"></i>
</div>
<div class="services-content">
<h3><a href="https://www.linkedin.com/groups/9206025/">LinkedIn Page</a>
</h3>
<p> Follow the official page of CollegeBuddy Community where we regularly post about all the
upcoming
Events & Workshops </p>
</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12" data-aos="fade-up" data-aos-duration="1500">
<div class="services-item wow fadeInRight" data-wow-delay="1.2s">
<div class="icon">
<a href="https://ashuthe1.github.io/Project/" target="_blank">
<i class="fab fa-github" style="color:#171515;" onmouseover="this.style.color='white'"
onmouseout="this.style.color='#171515'"></i>
</div>
<div class="services-content">
<h3><a href="https://github.com/ashuthe1/Project">Open Source
Project</a></h3>
<p> This is the GitHub repository of CollegeBuddy Website built using HTML,
CSS and
JavaScript and is Open Source. </p>
</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12" data-aos="fade-up" data-aos-duration="1500">
<div class="services-item wow fadeInRight" data-wow-delay="0.3s">
<div class="icon">
<a href="https://discord.gg/SAqwWYXd" target="_blank">
<i class="fab fa-discord" style="color:#7289d9;" onmouseover="this.style.color='white'"
onmouseout="this.style.color='#7289d9'"></i>
</div>
<div class="services-content">
<h3><a href="https://discord.gg/SAqwWYXd">Discord Server</a></h3>
<p> Join in the discord community and connect with like minded people across the country.
</p>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-------------Founder Team------------->
<!-- Testimonial Section End -->
<!-- Opportunity start -->
<section id="opportunity" class="section-padding">
<div class="section-header text-center" data-aos="fade-up" data-aos-duration="1500">
<h3 class="section-title wow fadeInDown" data-wow-delay="0.3s">Featured Events</h3>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<br>
<div class="oppurtunity_section">
<div class="card">
<img class="card-img-top" src="./assets/img/Event/e3.webp" alt="GDSC Image">
<div class="card-body">
<h5 class="card-title text_dark text-center">Live Wire</h5>
<a href="assets/img/Event/e3.webp" class="btn btn-common opportunity_btn" type="button">
Expand
</a>
<br> <br>
</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="./assets/img/Event/e4.webp" alt="Spark-a-thon image">
<div class="card-body">
<h5 class="card-title text_dark text-center">24 Hour Codethon</h5>
<a href="assets/img/Event/e4.webp" class="btn btn-common opportunity_btn" type="button">
Expand
</a>
<br> <br>
</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="./assets/img/Event/e5.webp" alt="Winter fest 2022 image">
<div class="card-body">
<h5 class="card-title text_dark text-center">Hackaphasia 🧑💻</h5>
<a href="assets/img/Event/e5.webp" class="btn btn-common opportunity_btn" type="button">
Expand
</a>
<br> <br>
</p>
</div>
</div>
</div>
<br>
<br>
</section>
<br><br>
<section id="testimonial" class="testimonial-community section-padding">
<div class="section-header text-center" data-aos="fade-up" data-aos-duration="1500">
<h2 class="section-title wow fadeInDown text_dark" data-wow-delay="0.3s">Founding Members</h2>
<div class="shape-testimonial wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<div class="container-fluid" data-aos="fade-up" data-aos-duration="1500">
<div class="row row-founders" style="width:80%; margin:0 auto;">
<div class="testimonial-item founder-item col-lg-3 col-md-4 col-sm-12">
<div class="img-thumb">
<img src="./assets/img/team/akash.jpg" alt="">
</div>
<div class="info">
<h2 class="text_dark">Akash Singh</h2>
<!-- <h3>Founder</h3> -->
</div>
<div class="media-icons">
<a href="https://github.com/AkashS20" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/akash-s29/" target="_blank"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="testimonial-item founder-item col-lg-3 col-md-4 col-sm-12">
<div class="img-thumb">
<img src="./assets/img/team/ashutosh.jpg" alt="Team members">
</div>
<div class="info">
<h2 class="text_dark">Ashutosh Gautam</h2>
</div>
<div class="media-icons">
<a href="https://github.com/ashuthe1" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/ashuthe1/" target="_blank"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="testimonial-item founder-item col-lg-3 col-md-4 col-sm-12">
<div class="img-thumb">
<img src="./assets/img/WhatsApp Image 2023-02-12 at 1.35.13 PM.jpeg" alt="">
</div>
<div class="info">
<h2 class="text_dark">Ayush Sharma</h2>
<!-- <h3>Founder</h3> -->
</div>
<div class="media-icons">
<a href="https://github.com/ayushthe1" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/ayushthe1/" target="_blank"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- counter starts -->
<div class="counter-up ">
<div class="content container wow fadeInDown animated">
<div class="box">
<div class="icon"><i class="fas fa-users"></i></div>
<div class="d-flex align-items-center">
<h1 class="counter">200</h1>
<p style="font-size: 50px;color: white;"> +</p>
</div>
<div class="text">Active Members</div>
</div>
<div class="box">
<div class="icon"><i class="far fa-calendar"></i></div>
<div class="d-flex align-items-center">
<h1 class="counter">20</h1>
<p style="font-size: 50px;color: white;"> +</p>
</div>
<div class="text">Events Listed</div>
</div>
<div class="box">
<div class="icon"><i class="fas fa-graduation-cap"></i></div>
<div class="d-flex align-items-center">
<h1 class="counter">50</h1>
<p style="font-size: 50px;color: white;"> +</p>
</div>
<div class="text">Courses Offered</div>
</div>
</div>
</div>
<!-- counter ends -->
<!-- Testimonial Section Start -->
<section id="testimonial1" class="testimonial-community section-padding">
<div class="section-header text-center" data-aos="fade-up" data-aos-duration="1500">
<h2 class="section-title wow fadeInDown text_dark" data-wow-delay="0.3s">Testimonials</h2>
<div class="shape-testimonial wow fadeInDown" data-wow-delay="0.3s"></div>
<div class="bio-testimonial wow fadeInDown">What does the community have to say about us?</div>
</div>
<div class="container" data-aos="fade-up" data-aos-duration="1500">
<div class="row justify-content-center">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div id="testimonials">
<div id="testimonials-slider">
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<div class="img-thumb">
<img src="./assets/img/team/shukla.jpg" alt="">
</div>
<div class="info">
<h2 class="text_dark">Akash Shukla </h2>
<h3>"I am so grateful to be a part of CollegeBuddy. The resources
provided on the website, such as the unitwise PYQ's and CGPA
calculator, have been extremely helpful in keeping track of my
academic progress.</h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="img-thumb">
<img src="./assets/img/Alia.jpg" alt="">
</div>
<div class="info">
<h2 class="text_dark">Akansha M
</h2>
<h3>As a female student, CollegeBuddy has been a game changer for
me. The platform provides a wide range of opportunities, from
internships to student organizations, giving me the chance to
showcase my skills and passions. </h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="img-thumb">
<img src="./assets/img/Virat_Kohli.jpg" alt="">
</div>
<div class="info">
<h2>Viraj Singh
</h2>
<h3>
The events happening on CollegeBuddy.Com provide a vibrant and
dynamic atmosphere, making my college experience truly
unforgettable."
</h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="img-thumb">
<img src="./assets/img/team/tm6.jpg" alt="">
</div>
<div class="info">
<h2>Neelam Mishra
</h2>
<h3>My journey in Open Source started with CollegeBuddy Community.
My first ever contribution here stirred such an interest in Open
Source.
Thank You, CollegeBuddy Community for such an amazing start.
</h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="img-thumb">
<img src="./assets/img/Sunder.jpg" alt="">
</div>
<div class="info">
<h2 class="text_dark"> Siddhant K</h2>
<h3>"I recently had the pleasure of discovering College Buddy, an edtech
platform developed by BMS College of Engineering. I was truly
impressed by its innovative approach to enhancing the college
experience for students.</h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="img-thumb">
<img src="./assets/img/team/tm7.jpg" alt="">
</div>
<div class="info">
<h2 class="text_dark">Kashish Mishra</h2>
<h3>"I am so grateful to be a part of CollegeBuddy.Com. The resources
provided on the website, such as the unitwise pYQ's and cGPA
calculator, have been extremely helpful.</h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="img-thumb">
<img src="./assets/img/team/tm8.png" alt="">
</div>
<div class="info">
<h2 class="text_dark">Shalini Singh</h2>
<h3>The events happening on CollegeBuddy.Com provide a vibrant and
dynamic atmosphere, making my college experience truly
unforgettable.".</h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="img-thumb">
<img src="./assets/img/team/aditya.jpg" alt="Hrithik Raj">
</div>
<div class="info">
<h2>Aditya Kishore
</h2>
<h3>I am excited to see the growth of CollegeBuddy and how it continues
to positively impact students and the
future of education. It helped me in starting my Coding Journey.
</h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="img-thumb">
<img src="./assets/img/team/tm9.jpg" alt="">
</div>
<div class="info">
<h2 class="text_dark">Tara Choudhary</h2>
<h3>CollegeBuddy Community is one of the best Community.It helped me to
start my journey towards Open Source and also learn alot of other
stuff form this amazing Community Thank you so much <b>CollegeBuddy</b>. </h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section Start -->
<section id="contact" style="background-image: url(./assets/img/one-yellow.png);"
class="section-padding bg-gray contactSection" data-aos="fade-up" data-aos-duration="1500">
<div class="text-center Contactsec">
<div class="section-header Contactsec text-center">
<h2 class="text_dark wow fadeInDown" data-wow-delay="0.3s">Contact Us</h2>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<div class="row">
<div class="col-md-6">
<form class="mt-5" id="contactForm" method="post">
<div class="form-row">
<div class="form-group col-md-6 ">
<input type="text" class="form-control" id="inputName" placeholder="Name" required>
</div>
<div class="form-group col-md-6 ">
<input type="email" class="form-control" id="inputEmail" placeholder="Email" required>
</div>
</div>
<div class="form-group ">
<input type="text" class="form-control" id="subj" placeholder="Subject" required>
</div>
<div class="form-group">
<textarea class="form-control" id="msg" rows="5" placeholder="Your Message"
required></textarea>
</div>
<button class="Cbtn text_dark float-left" id="checkBtn" type="submit">Submit</button>
<br>
<div id="msgSubmit" class="h3 text-left hidden"></div>
<br><br>
</form>
</div>
<div class="col-md-6 text-center">
<img class="image-fluid bg-cont" src="./assets/img/Call_center-cuate.png">
</div>
</div>
</div>
</section>
<!-- Contact Section End -->
<!---- Sponsors
==================================== -->
<div id="community_partner" class="community_partner">
<div class="container" data-aos="fade-up" data-aos-duration="1500">
<h1 class="text-center mt-5 community_title wow fadeInDown animated" data-wow-duration="500ms">OUR SPONSORS
</h1>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
<div class="imgbox wow fadeInLeft animated">
<div class="img_container" data-aos="fade-up" data-aos-duration="1500">
<div class="community_box box1" data-tilt data-tilt-scale="1.1">
<a href="https://www.geeksforgeeks.org/" style="text-decoration: none;" target="_blank"
title="GeeksForGeeks">
<img src="./assets/img/Partners/Geeks.webp" class="communityPartner__image"
alt="GeeksForGeeks logo">
</a>
</div>
<div class="community_box box2" data-tilt data-tilt-scale="1.1">
<a href="https://www.azdev.community/index.html#communities" style="text-decoration: none;"
target="_blank" title="Azure Developer Community">
<img src="./assets/img/Partners/Az-small.webp" class="communityPartner__image"
alt="Azdev community image">
</a>
</div>
</div>
<div class="img_container" data-aos="fade-up" data-aos-duration="1500">
<div class="community_box box3" data-tilt data-tilt-scale="1.1">
<a href="https://givemycertificate.com/" style="text-decoration: none;" target="_blank"
title="Give My Certificate">
<img src="./assets/img/Partners/GMC LogoS-small.webp" class="communityPartner__image"
alt="GMC Logo">
</a>
</div>
</div>
<div class="img_container" data-aos="fade-up" data-aos-duration="1500">
<div class="community_box box4" data-tilt data-tilt-scale="1.1">
<a href="https://www.newtonschool.co/" style="text-decoration: none;" target="_blank"
title="Newton School">
<img src="./assets/img/Partners/Newton School.png" class="communityPartner__image"
alt="Azdev community image">
</a>
</div>
<div class="community_box box5" data-tilt data-tilt-scale="1.1">
<a href="https://www.codingminutes.com/" style="text-decoration: none;" target="_blank"
title="Coding Minutes">
<img src="./assets/img/Partners/CodingMinutes Logo.png" class="communityPartner__image"
alt="Azdev community image">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer Section Start -->
<footer id="footer" class="footer-area section-padding">
<div class="container">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
<div class="widget">
<h3 class="footer-logo">CollegeBuddy</h3>
<div class="textwidget">
<p>Welcome to CollegeBuddy! We offer educational resources to help you navigate through
your college life. Additionally, we list events on various emerging
technologies and domains, and provide
information about employment opportunities.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
<h3 class="footer-titel">Quick Links</h3>
<ul class="footer-link">
<li><a href="#hero-area">Home</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#opportunity">Events</a></li>
<li><a href="#testimonials">Team</a></li>
<li><a href="#testimonial1">Testimonals</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-6 col-sm-12 col-xs-12">
<h3 class="footer-titel">Join Us</h3>
<ul class="footer-link">
<li><a href="#events">Events</a></li>
<!-- <li><a href="#">Hackathons</a></li> -->
<!-- <li><a href="#">Open Source</a></li> -->
<li><a href=""
target="_blank">Volunteer
Group</a></li>
<li><a href="">Community</a></li>
</ul>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 col-xs-12">
<h3 class="footer-news">Want to stay updated?<br>
Subscribe to our Newsletter :)</h3>
<p class="text-light mb-2">Subscribe to get latest updates.</p>
<div class="mail d-flex">
<input type="email" id="Email" placeholder="Enter your email" />
<a type="submit" id="btns" label="submit" placeholder="submit">Submit</a>
</div>
<!-- Modal to trigger after submitting the newsletter form -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog"
aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">
<p class="text_dark" id="subscribeTitle"></p>
</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="text_dark" id="suscribeMsg"></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-warning"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<h3 class="contact-footer mt-5">Contact</h3>
<ul class="address">
<li>
<a
href="https://www.google.com/maps/place/Asansol,+West+Bengal/@23.6834541,86.8541898,11z/data=!3m1!4b1!4m5!3m4!1s0x39f71f0ea1022529:0xf888f7e7fd11cefe!8m2!3d23.6888636!4d86.9660638"><i
class="fas fa-map-marked-alt"></i> Location: Bengaluru, India-560050</a>
</li>
<li>
<a href="mailto:[email protected]"><i class="fas fa-envelope"></i> Email:
</li>
</ul>
</div>
</div>
</div>
</div>
<ul class="socials">
<li>
<a class="linkedin" href="https://www.linkedin.com/groups/9206025/" target="_blank">
<i class="fab fa-linkedin" style="color: rgb(10,102,194);" onmouseover="this.style.color='white'"
onmouseout="this.style.color='#0A66C2'"></i></a>
</li>
<li>
<a class="discord" href="https://discord.gg/SAqwWYXd" target="_blank"><i class="fab fa-discord"
style="color:#7289d9;" onmouseover="this.style.color='white'"
onmouseout="this.style.color='#7289d9'"></i></a>
</li>
<li>
<a class="github" href="https://github.com/ashuthe1/Project" target="_blank"><i class="fab fa-github"
style="color:#171515;" onmouseover="this.style.color='white'"
onmouseout="this.style.color='#171515'"></i></a>
</li>
<li>
<a class="youtube" href="https://ashuthe1.github.io/DJ-/" target="_blank"><i class="fab fa-youtube" style="color:#FF0000;"
onmouseover="this.style.color='white'" onmouseout="this.style.color='#FF0000'"></i></a>
</li>
<li>
<a class="twitter" href="https://twitter.com/ashuthe1x" target="_blank"><i class="fab fa-twitter"
style="color: #1DA1F2" ; onmouseover="this.style.color='white'"
onmouseout="this.style.color='#1DA1F2'"></i></a>
</li>
</ul>
</div>
<div id="copyright">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="copyright-content">
<p>Copyright © 2023 <a rel="nofollow" href="#">CollegeBuddy</a> All Right Reserved</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer Section End -->
<!-- end navigate to top button -->
<!-- darkmode fitur -->
<div class="darkmode animate__animated animate__bounceInLeft animate__delay-1s">
<button class="animate__animated animate__bounceIn animate__delay-2s">
<i data-feather="moon" class="moon"></i>
<i data-feather="sun" class="sun"></i>
</button>
</div>
<!-- finish fitur -->
<!-- counter scripts -->
<script src="./JS/Counter1.js"></script>
<!--JS Function allocated to JS Folder-->
<!-- counter scripts end -->
<!--navigate to top button script-->
<script>
// initialize AOS
AOS.init({
disable: function () {
if (window.innerWidth > 767) {
return true;
} else {
return false;
}
}
});
//initialize AOS ends
</script>
<!-- emailjs cdn -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@3/dist/email.min.js"></script>
<!-- emailjs cdn -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/owl.carousel.min.js"></script>
<script src="assets/js/wow.js"></script>
<script src="assets/js/jquery.nav.js"></script>
<!-- <script src="assets/js/scrolling-nav.js"></script> -->
<!-- <script src="assets/js/jquery.easing.min.js"></script> -->
<script src="assets/js/main.js"></script>
<script src="assets/js/form-validator.min.js"></script>
<script src="assets/js/contact-form-script.min.js"></script>
<!--Swiper JS-->
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<script src="assets/js/swipper.js"></script>
<!-- Vanilla Tilt -->
<script src="./assets/vanilla-tilt/dist/vanilla-tilt.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.3.2/lazysizes.min.js"
integrity="sha512-q583ppKrCRc7N5O0n2nzUiJ+suUv7Et1JGels4bXOaMFQcamPk9HjdUknZuuFjBNs7tsMuadge5k9RzdmO+1GQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- icon feather -->
<script src="https://unpkg.com/feather-icons"></script>
<!-- end icon feather -->
<!-- jquery -->
<script src="./assets/js/jquery-3.5.1.min.js"></script>
<!-- darkmode -->
<script src="./assets/js/darkmode.js"></script>
<button type="button" class="btn btn-warning btn-xs" id="btn-back-to-top">
<i class="fas fa-arrow-circle-up"></i>
</button>
<style>
#btn-back-to-top {
position: fixed;
bottom: 80px;
size: 10px;
right: 10px;
display: none;
color: azure;
}
#btn-back-to-top:hover {
background-color: azure;
}
#btn-back-to-top:hover i {
color: #ffd100;
}
</style>
<script>
//Get the button
let mybutton = document.getElementById("btn-back-to-top");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction();