-
Notifications
You must be signed in to change notification settings - Fork 189
/
eventPage.html
572 lines (508 loc) · 23.2 KB
/
eventPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events - EduHub Community</title>
<!-- Favicons -->
<link href="assets/img/Eduhub Logo (2).png" rel="icon">
<!-- <link href="assets/img/apple-touch-icon.png" rel="apple-touch-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/Eduhub Logo (2).png" alt="" class="img-fluid" /></a>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto" href="index.html#hero">Home</a></li>
<li><a class="nav-link scrollto" href="index.html#about">About</a></li>
<li><a class="nav-link scrollto" href="index.html#services">Opportunities</a></li>
<li><a class="nav-link scrollto active" href="index.html#event">Events</a></li>
<li><a class="nav-link scrollto" href="internship-detaills.html">Internships</a></li>
<li><a class="nav-link scrollto" href="index.html#team">Team</a></li>
<li><a class="nav-link scrollto" href="index.html#contact">Contact</a></li>
<li>
<a class="getstarted scrollto" href="index.html#upcoming-events">Explore</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<!-- ======= Breadcrumbs ======= -->
<main>
<section id="breadcrumbs" class="breadcrumbs">
<div class="container">
<ol>
<li><a href="index.html">Home</a></li>
<li>Events</li>
</ol>
</div>
</section>
<!-- End Breadcrumbs -->
<!-- ======= Team Section ======= -->
event-item h-100
<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.
</p>
</div>
<div class="row event-container">
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap h-100">
<img src="assets/img/events/event-18.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>Placnment Prepration Stratiges</h4>
<p>About Speaker <br>
"Anuradha Jadon"
</p>
</b>
<div class="event-links">
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSeNWLZmhuz47XNdG_PdZ2uiGxj9uuvlUjt0QgrxMCGWwq9f7w/viewform"><i
class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<!-- <div class="row event-container">
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap h-100">
<img src="assets/img/events/devrel.jpg" class="img-fluid h-100" alt="" />
<div class="event-info">
<b>
<h4>Career in Devrel Engineering and Community</h4>
<p>About Event <br>
Developer relations isn’t just one job. In fact, there are several roles that fit under the DevRel umbrella.
🛑 Do You know What is DevRel🥑 or Developer Relation? What is a Community Manager? What is a Developer advocate ??
No Worry Eduhub Community is there to clear your doubts regarding Developer Relations and Community management.
We have our guest Ms. Haimantika Mitra Developer Advocate🥑 Appwrite & Ex Microsoft Tech Support Engineer .
</p>
</b>
<div class="event-links">
<a href="https://youtu.be/bbaeO6YSYOc"><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 h-100">
<img src="assets/img/events/event-15.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>Intrivew Series</h4>
<p>About Speaker <br>
"Bahar Grover"</p>
</b>
<div class="event-links">
<a href="https://forms.gle/TYVTnRZunbckq2Zp6"><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 h-100">
<img src="assets/img/events/event-16.jepg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>GSOC Preparation Strategy</h4>
<p>About Speaker <br>
"Aman raj"</p>
</b>
<div class="event-links">
<a href="https://forms.gle/wqREArMk2LUdF6oo6"><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 h-100">
<img src="assets/img/events/event-17.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>How To Start Entrepreneurship Journey?</h4>
<p>About Speaker <br>
"Mr. Sidharath Suvankar Nayak"</p>
</b>
<div class="event-links">
<a href="https://forms.gle/i9KBoVd9EMh3r2wa7"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="row event-container"></div>
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap h-100">
<img src="assets/img/events/devrel.jpg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>Career in Devrel Engineering and Community</h4>
<p>About Event <br>
Developer relations isn’t just one job. In fact, there are several roles that fit under the DevRel
umbrella.
🛑 Do You know What is DevRel🥑 or Developer Relation? What is a Community Manager? What is a
Developer advocate ??
No Worry Eduhub Community is there to clear your doubts regarding Developer Relations and Community
management.
We have our guest Ms. Haimantika Mitra Developer Advocate🥑 Appwrite & Ex Microsoft Tech Support
Engineer .
</p>
</b>
<div class="event-links">
<a href="https://youtu.be/bbaeO6YSYOc"><br><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 h-100">
<img src="assets/img/events/event-14.png" class="img-fluid h-100" alt="" loading="lazy" />
<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 h-100">
<img src="assets/img/events/event-13.png" class="img-fluid h-100" alt="" loading="lazy" />
<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 h-100">
<img src="assets/img/events/event-12.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<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="row event-container">
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap h-100">
<img src="assets/img/events/event-10.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<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="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap h-100">
<img src="assets/img/events/event-9.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>Google Step Intern</h4>
<p>About Speaker <br>
"Nishtha Goyal, Google Step'21 Intern, is a pre-final year student at IGDTUW
in the IT department. "</p>
</b>
<div class="event-links">
<a href="#"><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 h-100">
<img src="assets/img/events/event-8.jpeg" class="img-fluid h-100" alt="" />
<div class="event-info">
<b>
<h4>Outreachy Internships</h4>
<p>About Speaker <br>
" Vani Chitkara is undergraduate engineering student. She is DSC Lead and also
Outreachy'21 Intern at OpenArchive."</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=tyiKBJp5hOI"><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 h-100">
<img src="assets/img/events/event-7.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>All About Twitther</h4>
<p>About Speaker<br>
"Shewta Gurnani is 2022 grad from IIT Una. She will be joining Twitter as an
SDE intern in Identity and Access Management team."</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=JesesOrvEr4"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="row event-container">
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap h-100">
<img src="assets/img/events/event-6.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>Roadmap to Flutter Development</h4>
<p>About Event <br>
"Aditya Thakur is a Flutter Developer with experience in building cross platform applications
for Android, iOS and web. Winner of IEEE Mandi 'Go Online' challenge at Electrothon 3.0 by NIT
Hamirpur. "
</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=980hbso5uMs"><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 h-100">
<img src="assets/img/events/event-5.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>All About Node JS</h4>
<p>About Speaker <br>
"Roman Frolov is a Senior Software Engineer at Codesphere, ex-CTO of TAU, and
a winner of Hack Moscow. "</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=h5FjL2A4usE"><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 h-100">
<img src="assets/img/events/event-4.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>UI/UX Designing</h4>
<p>About Speaker <br>
"Rahul Rana is a Co-Founder of Community Classroom, Product Designer at
Parallell, a GSSOC Contributor, Microsoft LSA'21, Google DSC mentor and more."</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=ZNLGdc4Mnj8"><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 h-100">
<img src="assets/img/events/event-3.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>Getting started with Open Source and Github</h4>
<p>About Speaker<br>
"Vivek Anand Sharma aka Slim Coder, he is a Software engineer.He has a great
professional experience in software development. "</p>
</b>
<div class="event-links">
<a href="https://www.youtube.com/watch?v=iL-HIv8rV8Q"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="row event-container">
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap h-100">
<img src="assets/img/events/event-2.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>Getting started by DSA and CP</h4>
@@ -426,8 +426,8 @@ <h4>Getting started by DSA and CP</h4>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap h-100">
<img src="assets/img/events/event-11.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>Introduction to Web development</h4>
@@ -444,8 +444,8 @@ <h4>Introduction to Web development</h4>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 event-item ">
<div class="event-wrap h-100">
<img src="assets/img/events/event-1.jpeg" class="img-fluid h-100" alt="" loading="lazy" />
<div class="event-info">
<b>
<h4>All About Internships</h4>
<p>About Speaker <br>
"Samarjeet Banik is a R&D intern at Samsung R&D institute. He was an Ex
Functional Tester intern at DigiLocker. "</p>
</b>
<div class="event-links">
<a href="#"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- End Events Section -->
<div class="section-title">
<h2></h2>
</div>
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>EduHub Community</h3>
<p>
Chomu Udaipuria Mod, <br />
Jaipur,<br />
Rajasthan. <br /><br />
<!-- <strong>Phone:</strong> +1 5589 55488 55<br /> -->
<strong>Email:</strong>
<p>
<a target="_blank" href="mailto:eduhub.community@gmail.com">eduhub.community@gmail.com</a>
</p><br />
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Quick Access</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#hero">Home</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#about">About</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#services">Opportunities</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#event">Events</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#team">Team</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Outreach</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i>
<a href="https://linktr.ee/EduhubCommunity">Social Media</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="https://drive.google.com/file/d/1G3uDu9hbX7_oFa2B1bikeaTBPr2wBxs-/view?usp=sharing">MSME</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="codeOfConduct.html">Code of Conduct</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a
href="https://docs.google.com/forms/d/1XUnnCtcWtDgnCSQmBgqPjUQ6H5KlE8Ek1LJpXX76Hg4/viewform?edit_requested=true">Reach
out to us for any Queries</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Subscribe</h4>
<p>Stay Updated for our Exciting events</p>
<form action="" method="post">
<input type="email" name="email" /><input type="submit" value="Subscribe" />
</form>
</div>
</div>
</div>
</div>
<div class="container d-md-flex py-4">
<div class="social-links text-center text-md-right pt-3 pt-md-0">
<!-- <a href="#" class="twitter"><i class="bx bxl-twitter"></i></a> -->
<a target="_blank" href="https://www.facebook.com/eduhubcommunity" class="facebook"><i
class="bx bxl-facebook"></i></a>
<a target="_blank" href="https://www.instagram.com/eduhub_community/" class="instagram"><i
class="bx bxl-instagram"></i></a>
<a target="_blank" href="https://www.youtube.com/channel/UCPpG3qqMH_0QDvSzHyjjZJQ" class="google-plus"><i
class="bx bxl-youtube"></i></a>
<a target="_blank" href="https://www.linkedin.com/company/eduhub-community" class="linkedin"><i
class="bx bxl-linkedin"></i></a>
<a target="_blank" href="https://twitter.com/CommunityEduhub" class="twitter"><i class="bx bxl-twitter"></i></a>
</div>
</div>
</footer>
<!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center">
<i class="bi bi-arrow-up-short"></i></a>
<!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>