forked from Eduhub-Community/Eduhub-Community.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1622 lines (1454 loc) · 64.6 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/Eduhub Logo (2).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" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <title>Amazon</title>
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- Dark Mode CSS Files -->
<link href="assets/css/dark-mode-style.css" rel="stylesheet" />
<link href='https://css.gg/dark-mode.css' rel='stylesheet'>
<!-- Script that connect to the email Api -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js">
</script>
<!-- <script type="text/javascript">
(function () {
emailjs.init("D2jKnHPqRwZkN7ri3");
})();
</script> -->
<!-- Script that connect to the email Api ends HERE -->
</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/Eduhub Logo (2).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="https://eduhubcommunity.tech/elearning/">E Learning</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="gallery.html">Gallery</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="nav-link scrollto" href="https://eduhubcommunity.tech/eduhub-winter-cohort1.0">Winter
Camp1.0</a></li>
<li>
<a class="getstarted scrollto" href="#upcoming-events">Explore</a>
</li>
<li>
<button onclick="myFunction()" class="dark-mode-button"><i class="gg-dark-mode"></i></button>
</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 you forward :)</h2>
<a href="https://discord.gg/ytS4FmemTt" class="btn-get-started scrollto">Welcome You All</a>
<!-- <button> <a href="https://eduhubcommunity.tech/entrepreneurship-conference/" id="blinking" style="text-decoration:none;">EConference </a></button> -->
<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>
“Eduhub Community”
<br>
It’s a community for learners by learners. The vision of this community is to build an environment
where people can learn, implement and grow together. It provides people the opportunity to work with
peers, showcase their talent and enhance their skills by working in-team. #letstakeyouforward
</p>
<button class="about-btn">
<a href="https://linktr.ee/EduhubCommunity"> Join in now<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
develop 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, grow and solve real world problems together.
</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, brainstorming with likeminded people, and much 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 class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center ">
<img src="assets/img/clients/azdevlogonew.png" class="img-fluid" style="height:80px" 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/ineuron-logo.png" class="img-fluid" style="height:90px" 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/spark-ar-logo.jpg" class="img-fluid" style="height:80px" 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/microsoft.png" class="img-fluid" style="height:100px" 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/gfg.png" class="img-fluid" style="height:70px" 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/gdsc.jpg" 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!<br>
Build a strong network and interact with numerous like minded people.
As we already know that software development professionals flourish by networking, likewise, we help you
in
connecting with 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 sessions, you can explore different fields and learn many more things which will
eventually benefit you in various aspects.
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!<br> 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 best 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
achievements 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 dark">
<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 dark">
<div class="icon"><i class="bx bx-file"></i></div>
<h4 class="title"><a href="https://eduhubcommunity.tech/Campus-Leader-Page/">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 dark">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4 class="title"><a href="">Hackathons/Workshops</a></h4>
<p class="description">
We organise workshops, sessions,
mentorship, hackathons everything free of cost.
We also periodically organise community meetings
for our core 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 dark">
<div class="icon"><i class="bx bx-layer"></i></div>
<h4 class="title"><a href="https://eduhubcommunity.tech/Campus-Leader-Page/">Chapter Lead</a></h4>
<p class="description">
Chapter 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 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>Our Events</h2>
</div>
<!-- <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="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 class="row content our-event-container">
<div class="col-md-12" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/events/Sponsor (4).png" class="img-fluid" alt="" style="border-radius: 30px;" />
</div>
<div class="col-md-12 pt-4" data-aos="fade-left" data-aos-delay="100">
<h3>
Eduhub Web3.0 Connect Gurgaon
</h3>
<p class="fst-italic" style="font-size: 20px;">
Eduhub Community is back again with another meet-up in web3.0 🤩
In collaboration with Covalent, and Supported by QuillAudits we bring you an _in-person_
#eduhubweb3connect and Web3.0 🥳 event where you can join the community to learn, explore and contribute
towards Web3.0! 🥳.
<br>
<br>
<button class="button-register row">
<a href="https://lu.ma/web3-gurgaon" style="color:#fff;">Register Now</a>
</button>
</div>
</div><br><br>
<div class="row content our-event-container">
<div class="col-md-12" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/events/DSC06547.JPG" class="img-fluid" alt="" style="border-radius: 30px;" />
</div>
<div class="col-md-12 pt-4" data-aos="fade-left" data-aos-delay="100">
<h3>
Eduhub Tech Conference
</h3>
<p class="fst-italic" style="font-size: 20px;">
Conference with Mr. Sandeep Jain Founder of GeeksforGeeks
<br>
<br>
<button class="button-register row">
<a href="https://eduhubcommunity.tech/gallery.html" style="color:#fff;">View more</a>
</button>
</div>
</div><br><br>
<div class="row content our-event-container">
<div class="col-md-12" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/events/founder.JPG" class="img-fluid" alt="" style="border-radius: 30px;" />
</div>
<div class="col-md-12 pt-4" data-aos="fade-left" data-aos-delay="100">
<h3>
#letstakeyouforward is not just a hashtag it's a sentiment it's a feeling that we are proud off.
</h3>
<p class="fst-italic" style="font-size: 20px;">
Our Co founders Priya and Sahitya
Building India’s Largest Education tech Community Eduhub
<br>
<br>
<button class="button-register row">
<a href="https://eduhubcommunity.tech/gallery.html" style="color:#fff;">View More</a>
</button>
</div>
</div>
</section>
</section>
<!-- =======End Upcoming Events Section ======= -->
<!-- ======= Events Section ======= -->
</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 offer you interactive webinars,
workshops and much more. So, stay tuned with us and contribute in our events.
Learn real-life skills from experts, join clubs, hangout and network with smart people and learn while
having fun <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="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="assets/img/events/event-14.png" class="img-fluid" alt="" />
</div>
<div class="flip-card-back">
<div class="event-info">
<h4 class="event-title">Opening ceremony at University of Lagos</h4>
</div>
<div class="event-description">
<p>"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>
<h6> ~ About Event</h6>
<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>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="assets/img/events/event-13.png" class="img-fluid h-100" alt="" />
</div>
<div class="flip-card-back">
<div class="event-info">
<h4 class="event-title">Roadmap for CSE Students</h4>
</div>
<div class="event-description">
<p>"Abdul bari sir is an experienced Chief Executive Officer
with a demonstrated history of working in the computer software industry. "</p>
<h6> ~ About Speaker</h6>
<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>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="assets/img/events/event-12.jpeg" class="img-fluid h-100" alt="" />
</div>
<div class="flip-card-back">
<div class="event-info">
<h4 class="event-title">Open source and Hands on Github</h4>
</div>
<div class="event-description">
<p>"Sahitya Roy is Founder of eduhub community."</p>
<h6> ~ About Speaker</h6>
<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>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="assets/img/events/event-10.jpeg" class="img-fluid h-100" alt="" />
</div>
<div class="flip-card-back">
<div class="event-info">
<h4 class="event-title">Opportunities Roadmap for 2nd & 3rd years</h4>
</div>
<div class="event-description">
<p>" Vibali Joshi is an upcoming SWE Intern'22 @Microsoft, PM intern @CueMath and
WIT LEad @GDSC-IIEST."</p>
<h6> ~ About Speaker</h6>
<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>
</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>
</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 towards a common vision. Our team and mentors are experts in Open
Source field and are working on different tech stacks currently.
.
</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;">Team members</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 dark">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Eduhub Community is a child for me building this community helps me a lot to grow in my community
journey, networking with various community leads many more stuffs :)
<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 dark">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I have learn a lot in the journey, i develop my communication skill as well as my management skill,
its an amazing experience.
<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>