-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.html
More file actions
1020 lines (934 loc) · 42.4 KB
/
index.html
File metadata and controls
1020 lines (934 loc) · 42.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!---Favicon-->
<link rel="icon" type="image/png" href="images/logo.png" />
<!-----------------------w3-CSS------------------------------------->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link rel="stylesheet" href="w3.css" />
<!-------------------------css bootstrap cdn------------------------>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<!---------------------------css stylesheet------------------------------->
<link rel="stylesheet" href="bootstrap-dist/css/style.css" />
<link rel="icon" href="images/logo.png" />
<!------------fontawesome cdn----------------->
<script src="https://kit.fontawesome.com/61024fa0a4.js" crossorigin="anonymous"></script>
<!---------------------------aos animation------------------------------->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css"/>
<script src="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js"></script>
<!------------------jquery/js bootstrap cdn---------------------->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<!-- CTA Button -->
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
<!--Custom CSS-->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="custom.css" />
<!---FontAwesome-->
<script src="https://use.fontawesome.com/2445c4adc5.js"></script>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,300,400,700" rel="stylesheet" />
<title>Codess.Cafe | Pro-bono mentorship program for women in tech</title>
<meta property="og:url" content="http://codess.cafe" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Codess.Cafe - Pro-bono mentorship program for women in tech" />
<meta property="og:description" content="Come be a part of a vibrant community of growth oriented women in tech" />
<meta property="og:image" content="http://prateknarang.com/images/DSAIcon.png" />
<style type="text/css">
.announcement {
background-color: #7ac25b;
/*#7ac25b;*/
}
.announcement a {
color: white;
text-decoration: none;
font-weight: 1000;
font-size: 1.2em;
}
.announcement a span {
color: yellow;
}
</style>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
"gtm.start": new Date().getTime(),
event: "gtm.js",
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-MJTJ4NT");
</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MJTJ4NT" height="0" width="0"
style="display: none; visibility: hidden"></iframe>
</noscript>
<!-- scroll up -->
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<div class="container-overall">
<section id="cover-banner" class="w-100">
<div class="container-nav" id="home">
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="index.html">
<img src="./images/logo.gif" height="80" alt="" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#offerings">Offerings</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#upcoming-chapters">Chapters</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#testimonials">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="mentors.html">Mentors</a>
</li>
<li class="nav-item">
<!-- <button class="btn btn-move btn-white md-3 font-weight-bold" onclick="location.href='#apply'">
Apply
</button> -->
<a class="nav-link" href="#apply">Apply</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#footer">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- social side bar -->
<nav class="social">
<ul>
<li>
<a href="https://twitter.com/CodessCafe/">Twitter <i class="fa-brands fa-x-twitter social_icons"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/company/codesscafe/">LinkedIn <i
class="fa fa-linkedin social_icons"></i></a>
</li>
<li>
<a href="https://medium.com/codess-cafe/">Medium <i class="fa fa-medium social_icons"></i></a>
</li>
<li>
<a href="https://www.youtube.com/channel/UC91cziHilAn3tsk30wxbHvA">Youtube <i
class="fa fa-youtube social_icons"></i></a>
</li>
</ul>
</nav>
<div class="" id="title">
<div class="container-fluid">
<div class="row">
<div class="big-heading-text col-lg-6">
<h1 class="big-heading">
Community of Empowered Women in Tech
</h1>
<h5 class="big-heading">
Come be a part of a vibrant community of high achieving,
growth oriented women in tech.
</h5>
<a href="#about" class="btn_aboutUs">About Us<span><ion-icon name="arrow-forward-outline"></ion-icon></span></a>
</div>
<div class="col-lg-6">
<img class="title-img" src="images/title-logo.png" alt="iphone-mockup" />
</div>
</div>
</div>
</div>
</section>
<section id="about" class="py-5">
<div class="row justify-content-center">
<div class="container">
<div class="row justify-content-between align-items-center py-5">
<div class="col-md-6" data-aos="fade-right">
<img src="images/about-banner2.png" style="width: 100%" alt="" />
</div>
<div class="col-md-6 about-subtitle" data-aos="fade-left">
<h1 class="display-4 heading font-weight-bold">
Mentorship Matters
</h1>
<span class="lead d-none d-md-block">
<br />
There's a myriad of information out there. A mentor helps
navigate the complexities of life and find the best path based
on your long term goals.
<br /><br />
We helped our mentees get placed in organisations like Google,
Microsoft, Amazon, Bloomberg, ByteDance, Adobe, Goldman Sachs,
Intuit, Flipkart, Visa, Walmart, Arcesium, DE Shaw, Postman,
Accenture, Myntra, Paytm etc.
</span>
</div>
</div>
</div>
</div>
</section>
<section id="offerings" class="">
<div class="container-fluid py-5" id="course-banner">
<h1 class="display-5 text-center text-light">Program Offerings</h1>
<h5 class="text-center text-light">
We focus on all round development to make you interview ready 👩🏻💻
</h5>
<div class="container">
<div class="row mt-5">
<div class="col-lg-2 col-6 text-light text-center p-3">
<i class="fa fa-code fa-3x" aria-hidden="true"></i>
<p class="text-light">Rigorous Coding Practice</p>
</div>
<div class="col-lg-2 col-6 text-light text-center p-3">
<i class="fa fa-headphones fa-3x" aria-hidden="true"></i>
<p class="text-light">Regular Mock Interviews</p>
</div>
<div class="col-lg-2 col-6 text-light text-center p-3">
<i class="fa fa-users fa-3x" aria-hidden="true"></i>
<p class="text-light">Scholarship prep sessions</p>
</div>
<div class="col-lg-2 col-6 text-light text-center p-3">
<i class="fa fa-line-chart fa-3x" aria-hidden="true"></i>
<p class="text-light">Weekly Progress Tracking</p>
</div>
<div class="col-lg-2 col-6 text-light text-center p-3">
<i class="fa fa-rocket fa-3x" aria-hidden="true"></i>
<p class="text-light">Career<br />counseling</p>
</div>
<div class="col-lg-2 col-6 text-light text-center p-3">
<i class="fa fa-diamond fa-3x" aria-hidden="true"></i>
<p class="text-light">Premium<br />Community</p>
</div>
</div>
</div>
</div>
</section>
<!-- Project Section -->
<section id="projects" class="">
<div class="container-fluid py-5">
<div class="container text-center">
<h1 class="display-6 text-muted mt-5">Our Projects</h1><br><br>
<div class="project-card-container">
<!-- Card 1 -->
<div class="project-card">
<img src="images\Oss.webp" alt="OSS Cohort">
<div class="project-card-content">
<h5>OSS Cohort</h5>
<h6>Program led by <a href="https://www.linkedin.com/in/jyoti-bisht-9299181b1/">Jyoti Bisht</a></h6>
<p>Start your open-source journey by learning how to contribute to real projects, understand Git workflows, and collaborate with global developers.</p>
</div>
</div>
<!-- Card 2 -->
<div class="project-card">
<img src="images\Cp.png" alt="CP Cohort">
<div class="project-card-content">
<h5>CP Cohort</h5>
<h6>Program led by <a href="https://www.linkedin.com/in/khushi-agarwal-5895b6243/">Khushi Agarwal</a></h6>
<p>Begin your competitive programming adventure by learning problem-solving techniques, contest strategies, and essential algorithms.</p>
</div>
</div>
<!-- Card 3 -->
<div class="project-card">
<img src="images\ML.jpg" alt="ML Cohort">
<div class="project-card-content">
<h5>ML Cohort</h5>
<h6>Program led by <a href="https://www.linkedin.com/in/garima-taneja/">Garima Taneja</a></h6>
<p>Take your first steps into machine learning with Python, understanding basic concepts, and building simple AI models from scratch.</p>
</div>
</div>
<!-- Card 4 -->
<div class="project-card">
<img src="images\DSA.png" alt="DSA Cohort">
<div class="project-card-content">
<h5>DSA Cohort</h5>
<h6>Program led by <a href="https://www.linkedin.com/in/pranjali-aditi/">Pranjali Aditi</a></h6>
<p>Learn the building blocks of programming through step-by-step guidance in fundamental data structures and basic algorithms.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Chapters -->
<section id="upcoming-chapters" class="">
<!-- upcoming chapters -->
<div class="container-fluid py-5" id="course-banner">
<div class="container">
<h1 class="display-5 text-center text-light">Our Chapters</h1><br><br>
<div class="row justify-content-center">
<!-- Chapter Cards -->
<div class="slide-container col-lg-3 col-md-4 col-sm-6">
<div class="slide-card">
<img height="180px" width="100%" src="https://wallpapercave.com/wp/wp2666764.jpg">
<h5>India Chapter</h5>
<h6>Program led by Vidhi Bhatt<br><br></h6>
</div>
</div>
<div class="slide-container col-lg-3 col-md-4 col-sm-6">
<div class="slide-card">
<img height="180px" width="100%"
src="https://i.pinimg.com/originals/23/eb/fd/23ebfd01ad58d6354f5be87002476bec.jpg">
<h5>Bangladesh Chapter</h5>
<h6>Program led by Kulsum Siddique<br><br></h6>
</div>
</div>
<div class="slide-container col-lg-3 col-md-4 col-sm-6">
<div class="slide-card">
<img height="180px" width="100%"
src="https://media.istockphoto.com/photos/nepal-picture-id530450181?k=20&m=530450181&s=612x612&w=0&h=M3BJ109SP25XKUj2ucPbEN9tp6v_C7m2JFmEzz6VVws=">
<h5>Nepal Chapter</h5>
<h6>Program led by Bhumi Malla & Sumee Adhikari</h6>
</div>
</div>
<div class="slide-container col-lg-3 col-md-4 col-sm-6">
<div class="slide-card">
<img height="180px" width="100%"
src="https://media-cdn.tripadvisor.com/media/photo-m/1280/22/30/49/02/caption.jpg">
<h5>Qatar Chapter</h5>
<h6>Program led by Subhanshi Rawat<br><br></h6>
</div>
</div>
<!-- <div class="slide-container col-12" style="height: 20px;"></div> -->
<div class="slide-container col-lg-3 col-md-4 col-sm-6">
<div class="slide-card">
<img height="180px" width="100%"
src="https://i.pinimg.com/originals/10/49/81/1049816946bb0a3563e645cdd61a479f.jpg">
<h5>Pakistan & Turkey Chapter</h5>
<h6>Program led by Hira Farooq<br><br></h6>
</div>
</div>
<div class="slide-container col-lg-3 col-md-4 col-sm-6">
<div class="slide-card">
<img height="180px" width="100%"
src="https://c.myholidays.com/blog/blog/content/images/2020/10/Top-Places-To-Visit-In-Saudi-Arabia-For-An-Exciting-Vacation.jpg">
<h5>Saudi Arabia Chapter</h5>
<h6>Program led by Nitya Mittal<br><br></h6>
</div>
</div>
<div class="slide-container col-lg-3 col-md-4 col-sm-6">
<div class="slide-card">
<img height="180px" width="100%" src="https://www.airpano.ru/files/dubai-uae/images/image1.jpg">
<h5>UAE Chapter</h5>
<h6>Program led by Yashaswini Shivathaya<br><br></h6>
</div>
</div>
</div>
<!-- upcoming chapters end -->
<br><br><br>
</div>
</div>
<div class="container" id="languages">
<div class="row justify-content-between no-gutters">
<div class="circle row justify-content-center udemy-perk-logo-container">
<img class="img-fluid udemy-perk-logo" src="images/c++.svg" alt="" />
</div>
<div class="circle row justify-content-center udemy-perk-logo-container" style="margin-top: -140px">
<img src="images/python.svg" class="img-fluid udemy-perk-logo" alt="" />
</div>
<div class="circle row justify-content-center udemy-perk-logo-container">
<img src="images/java.svg" class="img-fluid udemy-perk-logo" alt="" />
</div>
<div class="circle row justify-content-center udemy-perk-logo-container" style="margin-top: -140px">
<img src="images/brain.svg" class="img-fluid udemy-perk-logo" alt="" />
</div>
<div class="circle row justify-content-center udemy-perk-logo-container">
<img src="images/js.svg" class="img-fluid udemy-perk-logo" alt="" />
</div>
</div>
</div>
</section>
<section id="testimonials" class="my-1">
<div class="container text-center">
<!-- <h1 class="display-6 text-center font-weight-bold mt-5">Code your dream job with us</h1> -->
<h1 class="display-6 text-muted mt-5">What do our students say?</h1>
<div class="row">
<div class="col-md-4 mb-md-0 mb-4">
<div class="card-testimonials">
<div class="card-body">
<h5 class="card-title bold6">
<strong>Navpreet Kaur</strong>
</h5>
<div class="row px-3 justify-content-center align-items-center">
<p class="card-text mb-0">
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
</p>
</div>
<p class="mt-2">
Codess cafe is a place of wholesome preparation for your
interviews. From getting an opportunity to give mock
interviews to having a personal review of your resume, you
get every insight of interview preparation. It is a
community where people share opportunities and help each
other go. The mantra here is to ace interviews and out
Mentor Aarnav helps us achieve it come what may!
</p>
</div>
</div>
</div>
<div class="col-md-4 mb-md-0 mb-4">
<div class="card-testimonials">
<div class="card-body">
<h5 class="card-title bold6">
<strong>Akanksha Tanwar</strong>
</h5>
<div class="row px-3 justify-content-center align-items-center">
<p class="card-text mb-0">
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
</p>
</div>
<p class="mt-2">
If I had to best describe Codess.Cafe, I would say, I am a
part of this small but thriving community of extremely smart
women, who with the help of our talented mentor Aarnav
Jindal are pushing our boundaries to become better at what
we do. The idea is to throw away any inhibitions and doubts
one has about herself, and look beyond what we've been told
always by the society. The very streamlined nature of the
material shared by Aarnav sir does exactly that! I am very
grateful to be a part of this program.
</p>
</div>
</div>
</div>
<div class="col-md-4 mb-md-0 mb-4">
<div class="card-testimonials">
<div class="card-body">
<h5 class="card-title bold6">
<strong>Prachi Singhal</strong>
</h5>
<div class="row px-3 justify-content-center align-items-center">
<p class="card-text mb-0">
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
<img class="pb-1" src="images/star_filled.svg" alt="" />
</p>
</div>
<p class="mt-2">
Getting the right guidance at the right time is really
important and I am grateful to get is from Aarnav Jindal
under this program. He not only guided me but also took mock
interviews which boosted my confidence and gave me a chance
to analyse and improve and He always helped me in staying
positive even after rejections. Thanks Aarnav and
Codess.Cafe.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="team" class="my-5 mentors-section">
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-12 mb-5">
<h1 class="display-6 text-center font-weight-bold">
Meet the Team
</h1>
</div>
<div>
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/aarnavjindal/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/14.jpg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Aarnav Jindal<br />
<h2>Founder<br />PM: Scaler | CSE, DTU</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/shriya-chhabra/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/27.jpeg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Shriya Chhabra<br />
<h2>Founder<br />SDE: Microsoft | CSE, IGDTUW</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-2"></div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/vidhibhatt01/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/39.jpg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Vidhi Bhatt<br />
<h2>Organization Lead : India <br />SDE Intern: Amazon | CSE, GTU</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/jyoti-bisht-9299181b1/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/26.jpeg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Jyoti Bisht<br />
<h2>Codess.Cafe OSS Lead DevRel: AppWrite | MLH
Fellow'21 <br /></h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/bhumi-malla-407153171/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/41.jpg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Bhumi Malla<br />
<h2>Organization Lead : Nepal<br />Data Engineer at Cedargate</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/sumee-adhikari-28b550166/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/40.jpg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Sumee Adhikari<br />
<h2>Organization Lead : Nepal <br />QA Engineer : Clicked</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/kulsum-siddique-24750379/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/42.jpg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Kulsum Siddique<br />
<h2>Organization Lead : Bangladesh<br />AVP, QA | Green Delta Insurance</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/hira-farooq01/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/44.jpg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Hira Farooq<br />
<h2>Organization Lead : Pakistan<br /> APM: Vyro
</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/mittalnitya/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/46.jpg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Nitya Mittal<br />
<h2>Organization Lead : Saudi Arabia <br />SDE: American Express</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/subhanshi-rawat/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/45.jpg" alt="Your Image">
</div>
<div class="content">
<div class="detail">
<h2>
Subhanshi Rawat<br />
<h2>Organization Lead : Qatar<br />SDE : ION</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home">
<div class="card">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/yashaswini-shivathaya/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<div class="circle-mentors">
<img src="images/mentor/47.jpg" alt="Your Image">
</div>
<div class="content" id="spc_card">
<div class="detail">
<h2>
Yashaswini Shivathayat<br />
<h2>Organization Lead : UAE <br />Web Developer | UI / UX Designer</h2>
</h2>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mentor-cards-home"></div>
<!-- <div class="col-lg-4 col-md-6">
<a href="mentors.html"
><button class="btn-apply-team">Team</button></a
>
</div> -->
<div class="col-lg-4 col-md-6 mentor-cards-home"></div>
</div>
</div>
</div>
</div>
</section>
<section id="numbers" class="my-1">
<div class="container-fluid mt-5 " id="placement-banner">
<div class="container text-center">
<h1 class="display-6 text-center font-weight-bold">
Numbers Speak Louder
</h1>
<div class="row">
<div class="col-lg-3 col-sm-6 mt-3">
<h4 class="display-4 count font-weight-bold counter" data-target="700"></h4>
<br>
<h5>Community members</h5>
</div>
<div class="col-lg-3 col-sm-6 mt-3">
<h4 class="display-4 count font-weight-bold counter" data-target="500"></h4>
<br>
<h5>Offers and Scholarships Bagged</h5>
</div>
<div class="col-lg-3 col-sm-6 mt-3">
<h4 class="display-4 count font-weight-bold counter" data-target="50"></h4>
<br>
<h5>Companies</h5>
</div>
<div class="col-lg-3 col-sm-6 mt-3">
<h4 class="display-4 count font-weight-bold counter" data-target="22,00,000"></h4>
<br>
<h5>Average CTC</h5>
</div>
</div>
</section>
<section id="apply" class="mentors-section">
<div class="container">
<div class="col-12 mb-5">
<h1 class="display-6 text-center font-weight-bold">Apply</h1>
<!-- <p class="lead">Meet our fabulous team of 10x mentors</p> -->
</div>
<div class="">
<div class="" style="padding-bottom: 3%">
<h1 class="text-center" style="font-size: 25px">
We release forms regularly on LinkedIn to take new members
</h1>
<h1 class="text-center" style="font-size: 25px">
We have two intake programs depending on your year of study
</h1>
</div>
<!-- <div class="col-lg-12" style="padding-bottom: 3%;">
<h1 class="text-center" style="font-size: 20px">Codess.Cafe : For 3rd, 4th and 5th year students</h1>
<h2 class="text-center" style="font-size: 20px">Applications releasing in March 2022</h2>
<br />
<h1 class="text-center" style="font-size: 20px">Codess.Cafe Sophomore: For 2nd year students</h1>
<h2 class="text-center" style="font-size: 20px">Applications releasing in March 2022</h2>
</div>
<div class="col-lg-12" style="padding-bottom: 3%;">
<h1 class="text-center" style="font-size: 20px">Application process - </h1>
<h1 class="text-center" style="font-size: 15px">
1. Fill the Google form released on LinkedIn on our Codess.Cafe LinkedIn page<br>
2. Our team of 30+ mentors reviews the resumes and pick the mentees they're interested in
mentoring<br>
3. Shortlisted members are contacted via mail, linkedIn or whatsapp within 14 days<br>
4. New members are added to invited to join Codess.Cafe Discord channel and the growth begins !
</h1>
</div> -->
<!-- timeline -->
<div class="blob"></div>
<div class="container-timeline">
<div class="timeline-block timeline-block-right">
<div class="marker"></div>
<div class="timeline-content">
<h3>First Step</h3>
<p>
Fill the Google form released on the Codess.Cafe LinkedIn page
</p>
</div>
</div>
<div class="timeline-block timeline-block-left">
<div class="marker"></div>
<div class="timeline-content">
<h3>Second Step</h3>
<p>
Our team of 30+ mentors reviews the resumes and pick the
mentees they're interested in mentoring
</p>
</div>
</div>
<div class="timeline-block timeline-block-right">
<div class="marker"></div>
<div class="timeline-content">
<h3>Third Step</h3>
<p>
Shortlisted members are contacted via mail, LinkedIn or
WhatsApp within 14 days
</p>
</div>
</div>
<div class="timeline-block timeline-block-left">
<div class="marker"></div>
<div class="timeline-content">
<h3>Fourth Step</h3>
<p>
New members are invited to join the Codess.Cafe Community and the growth begins
</p>
</div>
</div>
</div>
<!-- forms -->
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq">
<div class="container-faq text-left">
<h1 class="text-center font-weight-bold">FAQ's</h1>
<p class="text-muted text-center">Frequently Asked Questions</p>
<div class="row">
<!-- left side start -->
<div class="col-md-6">
<div id="accordion-left">
<div class="faq-item">
<div class="card-header" id="headingLeftTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseLeftTwo"
aria-expanded="false" aria-controls="collapseLeftTwo">
How long is the program?
</button>
</h5>
</div>
<div id="collapseLeftTwo" class="collapse" aria-labelledby="headingLeftTwo" data-parent="#accordion-left">
<div class="card-body">
There is no fixed duration. Stay and enjoy the benefits of
community and mentorship as long as you would like 🙂
</div>
</div>
</div>
<div class="faq-item">
<div class="card-header" id="headingLeftThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseLeftThree"
aria-expanded="false" aria-controls="collapseLeftThree">
Is the program paid?
</button>
</h5>
</div>
<div id="collapseLeftThree" class="collapse" aria-labelledby="headingLeftThree" data-parent="#accordion-left">
<div class="card-body">
The program is completely free, thanks to our generous mentors
🙌
</div>
</div>
</div>
</div>
</div>
<!-- left side end -->
<!-- right side start-->
<div class="col-md-6">
<div id="accordion-right">
<div class="faq-item">
<div class="card-header" id="headingRightTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseRightTwo"
aria-expanded="false" aria-controls="collapseRightTwo">
What are the pre-requisites for this program ?
</button>
</h5>
</div>
<div id="collapseRightTwo" class="collapse" aria-labelledby="headingRightTwo" data-parent="#accordion-right">
<div class="card-body">
No pre-requisites, we only need highly motivated individuals 🤓
</div>
</div>
</div>
<div class="faq-item">
<div class="card-header" id="headingRightThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseRightThree"
aria-expanded="false" aria-controls="collapseRightThree">
Is this program only for women ?
</button>
</h5>
</div>
<div id="collapseRightThree" class="collapse" aria-labelledby="headingRightThree" data-parent="#accordion-right">
<div class="card-body">
Yes, this is a community and mentorship program just for women.
</div>
</div>
</div>
</div>
</div>
<!-- right side end -->
</div>
</div>
</section>
</div>
<!-- End of FAQ section -->
<section id="footer" class="p-5">
<div class="footer-dark">
<footer>
<div class="container-footer">
<div class="row">
<div class="col-md-6 item">
<img class="footer-logo" src="images/logo.gif" alt="" />
</div>
<div class="col-sm-6 col-md-6 item">
<p class="footer-logo-text">
Codess.Cafe was started with a vision to empower women in tech
to grab the opportunities they deserve. With dedicated,
quality guidance and mentorship, we wish to improve the
represenation of women in high impact organisations for a
better and more inclusive future.
</p>
<div class="col item social1">
<a class="social-link" href="mailto: aarnavjindal1000@gmail.com"><i
class="fa fa-envelope envelope social_icons"></i></a>
<a class="social-link" target="_blank" href="https://twitter.com/CodessCafe/"><i
class="fa-brands fa-x-twitter social_icons"></i></a>
<a class="social-link" target="_blank" href="https://www.linkedin.com/company/codesscafe/"><i
class="fa fa-linkedin linkedin social_icons"></i></a>
<a class="social-link" target="_blank" href="https://medium.com/codess-cafe/"><i
class="fa fa-medium medium social_icons"></i></a>
<a class="social-link" target="_blank"
href="https://www.youtube.com/channel/UC91cziHilAn3tsk30wxbHvA"><i
class="fa fa-youtube youtube social_icons"></i></a>
</div>