-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1358 lines (1256 loc) · 53.8 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 content="width=device-width, initial-scale=1.0" name="viewport" />
<title>EduHub Community</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Krub:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet" />
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" />
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<!-- <h1 class="logo"><a href="index.html">Bikin</a></h1> -->
<!-- Uncomment below if you prefer to use an image logo -->
<a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid" /></a>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Opportunities</a></li>
<li><a class="nav-link scrollto" href="#event">Events</a></li>
<li><a class="nav-link scrollto" href="internship-detaills.html">Internships</a></li>
<li><a class="nav-link scrollto" href="#team">Team</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li>
<a class="getstarted scrollto" href="#upcoming-events">Explore</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container d-flex flex-column align-items-center justify-content-center" data-aos="fade-up">
<h1>EduHub Community</h1>
<h2>Let's Take Your Forward !</h2>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
<img src="assets/img/Headers.png" class="img-fluid hero-img" alt="" data-aos="zoom-in" data-aos-delay="150" />
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="row no-gutters">
<div class="content col-xl-5 d-flex align-items-stretch" data-aos="fade-right">
<div class="content">
<h3>About Us</h3>
<p>
“Let’s Take You Forward”
<br>
It’s a community for the people by the people. The vision of the community is to build an environment
where people can learn together and implement together. It provides people the opportunity to work with
them showcase their talent, work in-team.
</p>
<button class="about-btn">
<a href="https://linktr.ee/EduhubCommunity"> Become a part of our Community <i
class="bx bx-chevron-right"></i></a>
</button>
</div>
</div>
<div class="col-xl-7 d-flex align-items-stretch" data-aos="fade-left">
<div class="icon-boxes d-flex flex-column justify-content-center">
<div class="row">
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-receipt"></i>
<h4>Open Source</h4>
<p>
Our motivation is to funnel learning
through development skills, that can solve
real-world problems.
</p>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-cube-alt"></i>
<h4>Code Collab</h4>
<p>
Collaborative Working that helps you
generate showcase-worthy work.
</p>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-images"></i>
<h4>Networking</h4>
<p>
India’s smartest student community,
to learn together and solve real world problems.
</p>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-shield"></i>
<h4>Entrepreneurship</h4>
<p>
Learn the basics of building your startup,
pitch your ideas, brainstorm with likeminded people, and many more!
</p>
</div>
</div>
</div>
<!-- End .content-->
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Collabs Section ======= -->
<section id="clients" class="clients">
<div class="container" data-aos="zoom-in">
<div class="row">
<div class="section-title">
<h2><br>Our Collaborations</h2>
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/msme.png" class="img-fluid" alt="" />
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-2.jpeg" class="img-fluid" alt="" />
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-3.jpeg" class="img-fluid" alt="" />
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-4.jpeg" class="img-fluid" alt="" />
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-5.jpeg" class="img-fluid" alt="" />
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-6.jpeg" class="img-fluid" alt="" />
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-7.jpeg" class="img-fluid" alt="" />
</div>
<!-- <div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img
src="assets/img/clients/collab-8.jpeg"
class="img-fluid"
alt=""
/>
</div> -->
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-9.jpeg" class="img-fluid" alt="" />
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-10.jpeg" class="img-fluid" alt="" />
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-11.jpeg" class="img-fluid" alt="" />
</div>
<!-- <div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img
src="assets/img/clients/collab-12.jpeg"
class="img-fluid"
alt=""
/>
</div> -->
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-13.jpeg" class="img-fluid" alt="" />
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="assets/img/clients/collab-14.jpeg" class="img-fluid" alt="" />
</div>
</div>
</div>
</section>
<!-- End Clients Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features" data-aos="fade-up">
<div class="container">
<div class="section-title">
<h2>Our Aim</h2>
</div>
<div class="row content">
<div class="col-md-5" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/features-1.png" class="img-fluid" alt="" />
</div>
<div class="col-md-7 pt-4" data-aos="fade-left" data-aos-delay="100">
<h3>
Network
</h3>
<p class="" style="font-size: 18px;">
Your network is your net worth. Build a strong network and interact with some of cool minded people,
As we already know that software development professionals flourish by networking, we help you in
connecting to people who matter via our online/offline events.
</div>
</div>
<div class="row content">
<div class="col-md-5 order-1 order-md-2" data-aos="fade-left">
<img src="assets/img/features-2.png" class="img-fluid" alt="" />
</div>
<div class="col-md-7 pt-5 order-2 order-md-1" data-aos="fade-right">
<h3>Explore</h3>
<p class="" style="font-size: 18px;">
With our masterclass or session, you can explore different fields and you can learn many more things
andthis will help a lot.
Join niche clubs, interact with experts, explore, network with high-profile and ambitious individuals, get
internships, and join India’s largest community all for free! What are you waiting for?
</p>
</div>
</div>
<div class="row content">
<div class="col-md-5" data-aos="fade-right">
<img src="assets/img/features-3.png" class="img-fluid" alt="" />
</div>
<div class="col-md-7 pt-5" data-aos="fade-left">
<h3>
Community-based learning
</h3>
<!-- <p> <em>Work, study and learn together. Bounce ideas off each other. From helping you find internships to working on projects, find your next circle here.</em>
</p> -->
<p class="" style="font-size: 18px;">
Work, study and learn together. Bounce ideas off each other. From helping you find internships to working
on projects, find your next circle here.
</p>
</div>
</div>
</div>
</section>
<!-- End Features Section -->
<!-- ======= Steps Section ======= -->
<!-- <section id="steps" class="steps">
<div class="container">
<div class="row no-gutters" data-aos="fade-up">
<div class="section-title">
<h2>Our Initiatives</h2>
</div>
<div
class="col-lg-4 col-md-6 content-item"
data-aos="fade-up"
data-aos-delay="100"
>
<span>01</span>
<h4>Internship opportunity</h4>
<p>
We launching our internships on 1 March
2022, we will provide Tech internships
as well as non-tech internships with
certificates and many more things.
</p>
</div>
<div
class="col-lg-4 col-md-6 content-item"
data-aos="fade-up"
data-aos-delay="200"
>
<span>02</span>
<h4>Repellat Nihil</h4>
<p>
Dolorem est fugiat occaecati voluptate velit esse. Dicta
veritatis dolor quod et vel dire leno para dest
</p>
</div>
<div
class="col-lg-4 col-md-6 content-item"
data-aos="fade-up"
data-aos-delay="300"
>
<span>03</span>
<h4>Ad ad velit qui</h4>
<p>
Molestiae officiis omnis illo asperiores. Aut doloribus vitae
sunt debitis quo vel nam quis
</p>
</div>
<div
class="col-lg-4 col-md-6 content-item"
data-aos="fade-up"
data-aos-delay="100"
>
<span>04</span>
<h4>Repellendus molestiae</h4>
<p>
Inventore quo sint a sint rerum. Distinctio blanditiis deserunt
quod soluta quod nam mider lando casa
</p>
</div>
<div
class="col-lg-4 col-md-6 content-item"
data-aos="fade-up"
data-aos-delay="200"
>
<span>05</span>
<h4>Sapiente Magnam</h4>
<p>
Vitae dolorem in deleniti ipsum omnis tempore voluptatem. Qui
possimus est repellendus est quibusdam
</p>
</div>
<div
class="col-lg-4 col-md-6 content-item"
data-aos="fade-up"
data-aos-delay="300"
>
<span>06</span>
<h4>Facilis Impedit</h4>
<p>
Quis eum numquam veniam ea voluptatibus voluptas. Excepturi aut
nostrum repudiandae voluptatibus corporis sequi
</p>
</div>
</div>
</div>
</section> -->
<!-- End Steps Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Our Initiatives</h2>
<p>
We encourage people to share about their skills or any
good work they do in their life so that many more
opportunites will come up in your life. Do share about your
achievement on social media
</p>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="fade-up"
data-aos-delay="100">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4 class="title"><a href="">Internship opportunity</a></h4>
<p class="description">
We are launching our internships on 1 March
2022, we will provide Tech internships
as well as non-tech internships with
certificates and many more things.
</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="fade-up"
data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="bx bx-file"></i></div>
<h4 class="title"><a href="">Campus Leaders</a></h4>
<p class="description">
Campus Leaders at Eduhub are people
with an entrepreneurial mindset who
want to add value to the community
by spreading awareness about the
cause and gathering like-minded
people to work towards it.
</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="fade-up"
data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4 class="title"><a href="">Hackathons/Workshops</a></h4>
<p class="description">
We provide free workshops, sessions,
mentorship, hackathons, free of cost.
we provide some community meetings
for our members.
</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="fade-up"
data-aos-delay="400">
<div class="icon-box">
<div class="icon"><i class="bx bx-layer"></i></div>
<h4 class="title"><a href="">Chapter Lead</a></h4>
<p class="description">
Chapter Leaders at Code For Cause
are people with an entrepreneurial
mindset who want to add value to the
community by spreading awareness
about the cause and gathering like minded people to work towards it.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- =======Upcoming Events Section ======= -->
<section id="upcoming-events" class="features" data-aos="fade-up">
<div class="container">
<div class="section-title">
<h2>Upcoming Events</h2>
</div>
<div class="row content">
<div class="col-md-5" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/upcoming-poster1.png" class="img-fluid" alt="" style="border-radius: 30px;" />
<!-- <div class="event">
<div class="event-wrap">
<img
src="assets/img/upcoming-poster1.png"
class="img-fluid"
alt=""
style="border-radius: 30px;"
/>
<div class="event-info">
<h4>EduHub International Collaboration</h4>
<p>...</p>
<div class="event-links">
<a
href="https://www.linkedin.com/posts/eduhub-community_community-students-opportunity-activity-6899347036437569536-KOYy"
class="event-lightbox"
><i class="bx bx-plus"></i
></a>
</div>
</div> -->
</div>
<div class="col-md-7 pt-4" data-aos="fade-left" data-aos-delay="100">
<h3>
Eduhub International Community
</h3>
<p class="fst-italic" style="font-size: 20px;">
An initiative to contribute to the open source community by providing training, guidance, and awareness
about the possibilities in the field of software to students. They get the opportunity to Learn real life
skills from expert, join clubs, hang out and network with other smart and tech oriented people in the
global community.</p>
<!-- <button class="about-btn" style="border-radius: 20px;">
<a href="https://linktr.ee/EduhubCommunity"
> <br>Register Now<br>
</a>
</button> -->
<button class="button-register">
<a href="https://www.linkedin.com/posts/eduhub-community_community-students-opportunity-activity-6899347036437569536-KOYy"
style="color:#fff;">Register Now</a>
</button>
</div>
</div>
<div class="row content">
<div class="col-md-5 order-1 order-md-2" data-aos="fade-left">
<img src="assets/img/upcoming-poster2.png" class="img-fluid" alt="" style="border-radius: 30px;" />
<!-- <div class="event">
<div class="event-wrap">
<img
src="assets/img/upcoming-poster2.png"
class="img-fluid"
alt=""
style="border-radius: 30px;"
/>
<div class="event-info">
<h4>Roadmap to CSE</h4>
<p>...</p>
<div class="event-links">
<a
href="https://www.linkedin.com/posts/eduhub-community_webinar-eduhub-eduhubcommunity-activity-6896688174232330240-UEPp"
class="event-lightbox"
><i class="bx bx-plus"></i
></a>
</div>
</div> -->
</div>
<div class="col-md-7 pt-5 order-2 order-md-1" data-aos="fade-right">
<h3>CSE Roadmap Event</h3>
<p class="fst-italic" style="font-size: 20px;">
Topic - Roadmap and career guidance for CSE students 𝐁𝐲 𝐀𝐛𝐝𝐮𝐥 𝐁𝐚𝐫𝐢 Sir. The event covering all
the essential guidelines and key tips for the Computer Science students, including guidance related to
DSA, Competitive coding, internships and many more.
</p>
<button class="button-register">
<a href="https://lnkd.in/eZ8s9-k9" style="color:#fff;">Register Now</a>
</button>
</div>
</div>
</div>
</section>
<!-- =======End Upcoming Events Section ======= -->
<!-- ======= Events Section ======= -->
<section id="event" class="event">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Events</h2>
<p>
In Our community we will offer you many webinar,
workshop so stay tuned with us and contribute in our events.
Learn real-life skills from experts, join clubs, hangout and network with smart people.<br>
<b>Get a chance to meet and learn from industry experts LIVE for FREE</b>
</p>
</div>
<div class="row event-container">
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap">
<img src="assets/img/events/event-14.png" class="img-fluid" alt="" />
<div class="event-info">
<b>
<h4>Opening ceremony at University of Lagos</h4>
<p>About Event <br>
"An initiative to contribute to the open source community by providing training,
guidance, and awareness about the possibilities in the field of software to students.
</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=PGmpCUQ4L1E"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap">
<img src="assets/img/events/event-13.png" class="img-fluid" alt="" />
<div class="event-info">
<b>
<h4>Roadmap for CSE Students</h4>
<p>About Speaker <br>
"Abdul bari sir is experienced chief executive officer
with a demonstrated history of working in the computer software industry. "</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=uDQaEkrF9Ww&t=382s"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap">
<img src="assets/img/events/event-12.jpeg" class="img-fluid" alt="" />
<div class="event-info">
<b>
<h4>Open source and Hands on Github</h4>
<p>About Speaker <br>
"Sahitya Roy is Founder of eduhub community."</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=9X2J0Zuanjs&t=33s"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap">
<img src="assets/img/events/event-10.jpeg" class="img-fluid" alt="" />
<div class="event-info">
<b>
<h4>Opportunities Roadmap for 2nd & 3rd years</h4>
<p>About Speaker<br>
" Vibali Joshi is an upcoming SWE INtern'22 @Microsoft, PM intern @CueMath and
WIT LEad @GDSC-IIEST."</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=HP_6Wv_ygsM&t=3008s"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="Event-page">
<button class="button-register view-team">
<a class="btn-work" href="./eventPage.html"
style="color:#fff;"> Explore More Events </a>
</button>
</div>
</div>
</div>
</section>
<!-- End Events Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Team</h2>
<p>
Teamwork is the ability to work together toward a common vision. Our team and Mentors are the experts on the
Open Source project and many more tech stack the team is working on.
.
</p>
</div>
<div class="teamage">
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="member">
<img src="assets/img/team/Priya.jpeg" class="img-fluid founder-img" alt="" />
<div class="member-info">
<div class="member-info-content">
<h4>Priya Chandak</h4>
<span>Founder</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="member">
<img src="assets/img/team/Sahitya.jpeg" class="img-fluid founder-img" alt="" />
<div class="member-info">
<div class="member-info-content">
<h4>Sahitya Roy</h4>
<span>Founder</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<!-- <div
class="col-xl-3 col-lg-4 col-md-6"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="member">
<img
src="assets/img/team/team_3.jpg"
class="img-fluid"
alt=""
/>
<div class="member-info">
<div class="member-info-content">
<h4>Anuradha Jadon</h4>
<span>Community Manager</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div
class="col-xl-3 col-lg-4 col-md-6"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="member">
<img
src="assets/img/team/team_11.JPG"
class="img-fluid"
alt=""
/>
<div class="member-info">
<div class="member-info-content">
<h4>Amol Kawade</h4>
<span>HR Manager</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div
class="col-xl-3 col-lg-4 col-md-6"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="member">
<img
src="assets/img/team/team_12.jpg"
class="img-fluid"
alt=""
/>
<div class="member-info">
<div class="member-info-content">
<h4>Sahil Patani</h4>
<span>Web Developer</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div
class="col-xl-3 col-lg-4 col-md-6"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="member">
<img
src="assets/img/team/team_7.jpg"
class="img-fluid"
alt=""
/>
<div class="member-info">
<div class="member-info-content">
<h4>Amar Sansil</h4>
<span>PR Manager</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div
class="col-xl-3 col-lg-4 col-md-6"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="member">
<img
src="assets/img/team/team_2.jpg"
class="img-fluid"
alt=""
/>
<div class="member-info">
<div class="member-info-content">
<h4>Nandini Agarwal</h4>
<span>HR Manager</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div
class="col-xl-3 col-lg-4 col-md-6"
data-aos="fade-up"
data-aos-delay="400"
>
<div class="member">
<img
src="assets/img/team/team_8.jpg"
class="img-fluid"
alt=""
/>
<div class="member-info">
<div class="member-info-content">
<h4>Harsh</h4>
<span>Web Developer</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div> -->
<div class="view-team">
<button class="button-register view-team">
<a class="btn-work" href="./team.html"
style="color:#fff;"> > </a>
<!-- <img src="/assets/img/team.png" height="25px" width="25px"> -->
</button>
</div>
</div>
</div>
</div>
</section>
<!-- End Team Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2> WHAT DOES THE COMMUNITY SAY ABOUT US ?</h2>
</div>
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Eduhub Community has added great value in improving my communication skills. Workshops are amazing and
i learn a lot more things from this community :)
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/Sahitya.jpeg" class="testimonial-img" alt="" />
<h3>Sahitya Roy</h3>
<h4>Co-Founder</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I have learn a lot in the bootcamp , the mentors were extremely helpful and dedicated , it was the
great learning. each and every concept so clearly and you can ask as many doubts as you have.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/Priya.jpeg" class="testimonial-img" alt="" />
<h3>Priya Chandak</h3>
<h4>Founder</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
"Eduhub Community" is FILLING THE GAP which was meant to be filled by the professors of the same
domain. To all of their efforts: "Very much appreciated"
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/team_3.jpg" class="testimonial-img" alt="" />
<h3>Anuradha Jadon</h3>
<h4>Community Manager</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
It was an amazing experience with Eduhub they will clear your each and every doubt, and the content
was also super. Excited to join Eduhub.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/team_2.jpg" class="testimonial-img" alt="" />
<h3>Nandini Agarwal</h3>
<h4>HR Manager</h4>
</div>
</div>
<!-- End testimonial item -->
<!-- <div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Quis quorum aliqua sint quem legam fore sunt eram irure
aliqua veniam tempor noster veniam enim culpa labore duis
sunt culpa nulla illum cillum fugiat legam esse veniam culpa
fore nisi cillum quid.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img
src="assets/img/testimonials/testimonials-5.jpg"
class="testimonial-img"
alt=""
/>
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
</div>
</div> -->
<!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- End Testimonials Section -->
<!-- Campus Ambassador Section -->
<section id="campus-leaders" class="about">
<div class="container">
<div class="row no-gutters">
<div class="content col-xl-5 d-flex align-items-stretch" data-aos="fade-right">
<div class="content">
<h3>Campus Leaders</h3>
<p>
Leaders at Eduhub Community are people with an entrepreneurial mindset who want to add value to the
community by spreading awareness about the cause and gather like-minded people to work towards it. Above
all, Campus Leaders lead-by-example and influence people by their contribution to the community.
</p>
<button class="about-btn" class="button-hover">
<a
href="https://docs.google.com/forms/d/e/1FAIpQLScBPqZJEwmzChKqfG3KAr9eb6YvyN1eITIATqZJJTUHfPHgMg/viewform">
Become a Campus Leader <i class="bx bx-chevron-right"></i></a>
</button>
<!-- <button>
<a class="getstarted scrollto" href="https://docs.google.com/forms/d/e/1FAIpQLScBPqZJEwmzChKqfG3KAr9eb6YvyN1eITIATqZJJTUHfPHgMg/viewform">Become a Campus Leader</a>
</button> -->
</div>
</div>
<div class="col-xl-7 d-flex align-items-stretch" data-aos="fade-left">
<div class="icon-boxes d-flex flex-column justify-content-center">
<div class="row">
<!-- <div
class="col-md-6 icon-box"
data-aos="fade-up"
data-aos-delay="100"
> -->
<!-- <img src="assets/img/campusimg.jpg" class="img-fluid" alt="" style="border-radius: 30px; width: fit-content;" /> -->
<!-- <img src="assets/img/campus-lead2.png" class="img-fluid" alt="" style="border-radius: 30px;" /> -->
<div class="event">
<div class="event-wrap">
<img src="assets/img/campusimg.jpg" class="img-fluid" alt="" style="border-radius: 30px;" />
<div class="event-info">
<h4>Benefits of Becoming a Campus Leader</h4>
<p>...</p>
<div class="event-links">
<a href="assets/img/campus.png" class="event-lightbox" title="App 1"><i
class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>