-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathHome.html
More file actions
1024 lines (894 loc) · 65.9 KB
/
Home.html
File metadata and controls
1024 lines (894 loc) · 65.9 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="zxx">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- bootstrap grid css -->
<link rel="stylesheet" href="css/plugins/bootstrap-grid.css">
<!-- font awesome css -->
<link rel="stylesheet" href="css/plugins/font-awesome.min.css">
<!-- swiper css -->
<link rel="stylesheet" href="css/plugins/swiper.min.css">
<!-- fancybox css -->
<link rel="stylesheet" href="css/plugins/fancybox.min.css">
<!-- ashley scss -->
<link rel="stylesheet" href="css/style.css">
<!-- page name -->
<title>CodeChef ABESEC Chapter</title>
<link rel="icon" type="image/x-icon" href="img/logos/CodeChef ABESEC.webp">
</head>
<body>
<!-- wrapper -->
<div class="mil-wrapper" id="top">
<!-- cursor -->
<div class="mil-ball">
<span class="mil-icon-1">
<svg viewBox="0 0 128 128">
<path d="M106.1,41.9c-1.2-1.2-3.1-1.2-4.2,0c-1.2,1.2-1.2,3.1,0,4.2L116.8,61H11.2l14.9-14.9c1.2-1.2,1.2-3.1,0-4.2 c-1.2-1.2-3.1-1.2-4.2,0l-20,20c-1.2,1.2-1.2,3.1,0,4.2l20,20c0.6,0.6,1.4,0.9,2.1,0.9s1.5-0.3,2.1-0.9c1.2-1.2,1.2-3.1,0-4.2 L11.2,67h105.5l-14.9,14.9c-1.2,1.2-1.2,3.1,0,4.2c0.6,0.6,1.4,0.9,2.1,0.9s1.5-0.3,2.1-0.9l20-20c1.2-1.2,1.2-3.1,0-4.2L106.1,41.9 z" />
</svg>
</span>
<div class="mil-more-text">More</div>
<div class="mil-choose-text">Сhoose</div>
</div>
<!-- cursor end -->
<!-- preloader -->
<!-- <div class="mil-preloader">
<div class="mil-preloader-animation">
<div class="mil-pos-abs mil-animation-1">
<p class="mil-h3 mil-muted mil-thin">Collaboration</p>
<p class="mil-h3 mil-muted">Coding</p>
<p class="mil-h3 mil-muted mil-thin">Excellence</p>
</div>
<div class="mil-pos-abs mil-animation-2">
<div class="mil-reveal-frame">
<p class="mil-reveal-box"></p>
<p class="mil-h3 mil-muted mil-thin">CodeChef ABESEC Chapter</p>
</div>
</div>
</div>
</div> -->
<!-- preloader end -->
<!-- scrollbar progress -->
<div class="mil-progress-track">
<div class="mil-progress"></div>
</div>
<!-- scrollbar progress end -->
<!-- New Menu frame start -->
<!-- menu -->
<div class="mil-menu-frame">
<!-- frame clone -->
<div class="mil-frame-top" >
<img src="./img/logos/LogoCC.webp" alt="CodeChef_ABESEC" style="height: 100px; width: 100px;">
<div class="mil-menu-btn">
<span></span>
</div>
</div>
<!-- frame clone end -->
<div class="container">
<div class="mil-menu-content">
<div class="row">
<div class="col-xl-5">
<nav class="mil-main-menu" id="swupMenu">
<ul>
<li class="mil-has-children mil-active">
<a href="Home.html">Homepage</a>
<!-- <ul>
<li><a href="Home.html">Landing page</a></li>
<li><a href="Home-2.html">Personal</a></li>
<li><a href="portfolio-3.html">Portfolio slider</a></li>
</ul> -->
</li>
<li class="mil-has-children">
<a href="Events.html">Events</a>
<!-- <ul>
<li><a href="Events.html">Grid type 1</a></li>
<li><a href="portfolio-2.html">Grid type 2</a></li>
<li><a href="portfolio-3.html">Slider</a></li>
</ul> -->
</li>
<li class="mil-has-children">
<a href="Team.html">Team</a>
<!-- <ul>
<li><a href="services.html">Services List</a></li>
<li><a href="service.html">Single service</a></li>
</ul> -->
</li>
<li class="mil-has-children">
<a href="Contact.html">Contact</a>
<!-- <ul>
<li><a href="Achievements.html">Blog List</a></li>
<li><a href="publication.html">Publication</a></li>
</ul> -->
</li>
<li class="mil-has-children">
<a href="Achievements.html">Achievements</a>
<!-- <ul>
<li><a href="Achievements.html">Blog List</a></li>
<li><a href="publication.html">Publication</a></li>
</ul> -->
</li>
<!-- <li class="mil-has-children">
<a href="Resources.html">Resources</a> -->
<!-- <ul>
<li><a href="Achievements.html">Blog List</a></li>
<li><a href="publication.html">Publication</a></li>
</ul> -->
<!-- </li> -->
<!-- <li class="mil-has-children">
<a href="#.">Other pages</a>
<ul>
<li><a href="Achievements.html">Blog List</a></li>
<li><a href="publication.html">Publication</a></li>
<li><a href="404.html">404</a></li>
</ul>
</li> -->
</ul>
</nav>
</div>
<div class="col-xl-7">
<!-- <div class="mil-menu-right-frame">
<div class="mil-animation-in">
<div class="mil-animation-frame">
<div class="mil-animation mil-position-1 mil-scale" data-value-1="2" data-value-2="2"></div>
</div>
</div>
<div class="mil-menu-right">
<div class="row">
<div class="col-lg-8 mil-mb-60">
<h6 class="mil-muted mil-mb-30">Projects</h6>
<ul class="mil-menu-list">
<li><a href="project-1.html" class="mil-light-soft">Interior design studio</a></li>
<li><a href="project-2.html" class="mil-light-soft">Home Security Camera</a></li>
<li><a href="project-3.html" class="mil-light-soft">Kemia Honest Skincare</a></li>
<li><a href="project-4.html" class="mil-light-soft">Cascade of Lava</a></li>
<li><a href="project-5.html" class="mil-light-soft">Air Pro by Molekule</a></li>
<li><a href="project-6.html" class="mil-light-soft">Tony's Chocolonely</a></li>
</ul>
</div>
<div class="col-lg-4 mil-mb-60">
<h6 class="mil-muted mil-mb-30">Useful links</h6>
<ul class="mil-menu-list">
<li><a href="#." class="mil-light-soft">Privacy Policy</a></li>
<li><a href="#." class="mil-light-soft">Terms and conditions</a></li>
<li><a href="#." class="mil-light-soft">Cookie Policy</a></li>
<li><a href="#." class="mil-light-soft">Careers</a></li>
</ul>
</div>
</div>
<div class="mil-divider mil-mb-60"></div>
<div class="row justify-content-between">
<div class="col-lg-4 mil-mb-60">
<h6 class="mil-muted mil-mb-30">Canada</h6>
<p class="mil-light-soft mil-up">71 South Los Carneros Road, California <span class="mil-no-wrap">+51 174 705 812</span></p>
</div>
<div class="col-lg-4 mil-mb-60">
<h6 class="mil-muted mil-mb-30">Germany</h6>
<p class="mil-light-soft">Leehove 40, 2678 MC De Lier, Netherlands <span class="mil-no-wrap">+31 174 705 811</span></p>
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
<!-- menu -->
<!--New Menu Frame End -->
<!-- curtain -->
<div class="mil-curtain"></div>
<!-- curtain end -->
<!-- frame -->
<div class="mil-frame">
<div class="mil-frame-top">
<img src="./img/logos/LogoCC.webp" alt="CodeChef_ABESEC" style="height: 100px; width: 100px;" class="imageOverlay">
<div class="mil-menu-btn" >
<span></span>
</div>
</div>
</div>
<!-- frame end -->
<!-- content -->
<div class="mil-content">
<div id="swupMain" class="mil-main-transition">
<!-- banner -->
<section class="mil-banner mil-dark-bg">
<div class="mi-invert-fix">
<div class="mil-animation-frame">
<div class="mil-animation mil-position-1 mil-scale" data-value-1="7" data-value-2="1.6"></div>
<div class="mil-animation mil-position-2 mil-scale" data-value-1="4" data-value-2="1"></div>
<div class="mil-animation mil-position-3 mil-scale" data-value-1="1.2" data-value-2=".1"></div>
</div>
<div class="mil-gradient"></div>
<div class="container">
<div class="mil-banner-content mil-up">
<h1 class="mil-muted mil-mt-150">Crafting <span class="mil-thin">a strong</span><br> Developer <span class="mil-thin">ecosystem</span></h1>
<!-- Event Card List -->
<div class="card__container" style="margin-top: 2rem;">
<!-- <article class="card__article" id="event1" onclick="handleEventClick('event1')">
<img src="img/current_event/event1.webp" alt="image" class="card__img">
<div class="text-overlay">#1 Pull N' Merge</div>
<div class="card__data">
<h2 class="card__title">Pull N' Merge</h2>
<span class="card__description">"Pull N' Merge," an exciting hands-on GitHub event hosted by the tech community Elixir at ABES Engineering College in Ghaziabad. <b>On October 16, 2024, from 4:30 PM to 5:30 PM</b></span>
<a href="#" class="card__button" onclick="redirectToEvent('https://lu.ma/ojwix4ty')">Join Now</a>
</div>
</article> -->
<!-- <article class="card__article">
<img src="img/current_event/soon3.gif" alt="image" class="card__img">
<div class="text-overlay"></div>
<div class="card__data">
<h2 class="card__title">Oops! Looks like our events took a coffee break ☕😅</h2>
<span class="card__description">"Check back soon—big things are brewing! 🔥🎉</span>
<a href="#" class="card__button" onclick="redirectToEvent('')"></a>
</div>
</article> -->
<article class="card__article" id="card1">
<img src="img/photo/DevShastra.webp" alt="image" class="card__img">
<div class="text-overlay"></div>
<div class="card__data">
<h2 class="card__title">DevShastra</h2>
<span class="card__description"> A premier 24-hour hackathon igniting innovation across AI, Web3, AR/VR, Fintech, and more.</span>
<!-- <a href="#" class="card__button" onclick="redirectToEvent('https://forms.office.com/pages/responsepage.aspx?id=Dn_YOpMfvUGU9ILDfZcciOfXwehu82FBhcMBdn0xhq5UOTEwTDU5UloxNTE2V0M1MTRONjgwM09NTy4u&route=shorturl')">Give_Feedback!</a> -->
</div>
</article>
</div>
<!-- Event Card List END -->
</div>
</div>
</div>
</section>
<!-- banner end -->
<section id="about">
<div class="container mil-p-120-30">
<div class="row justify-content-between align-items-center">
<div class="col-lg-6 col-xl-5">
<div class="mil-mb-90">
<h3 class="mil-up mil-mb-60">Discover <br>Our <span class="mil-thin">Bawarchikhaana</span></h3>
<p class="mil-up mil-mb-30"><span style="font-weight: 700; color:rgb(50, 47, 47); font-size: 20px;">CODECHEF ABESEC </span>We are a group of programmers with a passion for coding and teamwork. Hum to bas ek hi funda follow karte hain – 'Teamwork makes the dream work!'
😉. We develop a process for solving problems through collaboration. </p>
<p class="mil-up mil-mb-60">Our departments thrive on the collision of different perspectives, encouraging learning, experimentation, and innovation. This collective talent ensures we consistently achieve results that exceed expectations while embracing the limitless potential of our community.
Yahan possibilities ki koi limit nahi hai – bas <span style="font-weight: 600; color:rgb(57, 54, 54)"> #TechChefs ke saath bane rahiye aur coding yatra ko "Chaliye shuru karte hain"</span></p>
<div class="mil-about-quote">
<div class="mil-avatar mil-up">
<img src="./img/photo/CC_UE_1.webp" alt="Founder">
</div>
<h6 class="mil-quote mil-up">Collaborating our <span class="mil-thin">way to excellence:</span> Unleashing Creative <span class="mil-thin"> Perspectives</span></h6>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="mil-about-photo mil-mb-90">
<div class="mil-lines-place"></div>
<div class="mil-up mil-img-frame" style="padding-bottom: 160%;">
<img src="./img/photo/cc_chef.webp" alt="img" class="mil-scale" data-value-1="1" data-value-2="1.2">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- about end -->
<!-- services -->
<section class="mil-dark-bg">
<div class="mi-invert-fix">
<div class="mil-animation-frame">
<div class="mil-animation mil-position-1 mil-scale" data-value-1="2.4" data-value-2="1.4" style="top: 300px; right: -100px"></div>
<div class="mil-animation mil-position-2 mil-scale" data-value-1="2" data-value-2="1" style="left: 150px"></div>
</div>
<div class="container mil-p-120-0">
<div class="mil-mb-120">
<div class="row">
<div class="col-lg-10">
<span class="mil-suptitle mil-light-soft mil-suptitle-right mil-up">Empowering coders to innovate and excel in the world of programming.</span>
</div>
</div>
<div class="mil-complex-text justify-content-center mil-up mil-mb-15">
<span class="mil-text-image"><img src="img/photo/teamphoto.webp" alt="Team"></span>
<h2 class="mil-h1 mil-muted mil-center">Coding <span class="mil-thin">Together</span></h2>
</div>
<div class="mil-complex-text justify-content-center mil-up">
<h2 class="mil-h1 mil-muted mil-center">Growing<span class="mil-thin">Together.</span></h2>
<a href="Events.html" class="mil-services-button mil-button mil-arrow-place"><span>Discover Our Initiatives</span></a>
</div>
</div>
<div class="row mil-services-grid m-0">
<div class="col-md-6 col-lg-3 mil-services-grid-item p-0">
<a href="#" class="mil-service-card-sm mil-up">
<h5 class="mil-muted mil-mb-30">Coding Workshops &<br>Upskill</h5>
<p class="mil-light-soft mil-mb-30">We host coding workshops for hands-on practice and help participants upskill by applying these techniques in competitive environments.</p>
<!-- <div class="mil-button mil-icon-button-sm mil-arrow-place"></div> -->
</a>
</div>
<div class="col-md-6 col-lg-3 mil-services-grid-item p-0" >
<a href="#" class="mil-service-card-sm mil-up">
<h5 class="mil-muted mil-mb-30">Web Development &<br>Design Workshops</h5>
<p class="mil-light-soft mil-mb-30">We cover front-end and back-end development and through interactive sessions, participants learn coding and UI/UX design.</p>
<!-- <div class="mil-button mil-icon-button-sm mil-arrow-place"></div> -->
</a>
</div>
<div class="col-md-6 col-lg-3 mil-services-grid-item p-0 ">
<a href="#" class="mil-service-card-sm mil-up">
<h5 class="mil-muted mil-mb-30">Innovation Hub</h5>
<p class="mil-light-soft mil-mb-30">Unlocking the potential of innovations and collaborating ideas and minds to create the best!</p>
<!-- <div class="mil-button mil-icon-button-sm mil-arrow-place"></div> -->
</a>
</div>
<div class="col-md-6 col-lg-3 mil-services-grid-item p-0 ">
<a href="#" class="mil-service-card-sm mil-up">
<h5 class="mil-muted mil-mb-30">Connect With Cool Mentors</h5>
<p class="mil-light-soft mil-mb-30">Connect with Experienced mentors,seniors and explore new perspectives.</p>
<!-- <div class="mil-button mil-icon-button-sm mil-arrow-place"></div> -->
</a>
</div>
</div>
</div>
</div>
</section>
<!-- services end -->
<!-- Team -->
<section>
<div class="container mil-p-120-30">
<div class="row justify-content-between align-items-center">
<div class="col-lg-5 col-xl-4">
<div class="mil-mb-90">
<h3 class="mil-up mil-mb-60">Meet <br>Our Bawarchis </h3>
<p class="mil-up mil-mb-30">We are a Team of passionate coders dedicated to advancing programming skills and creating opportunities for growth. With a mix of diverse talents, we collaborate to organize events, challenges, and workshops for our coding community .</p>
<p class="mil-up mil-mb-60">Together, we’re cooking up a collaborative coding culture that fuels learning, pushes boundaries, and serves up a hearty helping of innovation—with a side of creativity .</p>
<div class="mil-up"><a href="Team.html" class="mil-button mil-arrow-place mil-mb-60" id="know-more"><span> Know more</span></a></div>
<h4 class="mil-up"><span class="mil-thin">We </span>Cook up <br><span class="mil-thin">success</span> with code.</h4>
</div>
</div>
<div class="col-lg-6">
<div class="mil-Team-list">
<div class="mil-lines-place"></div>
<div class="row mil-mb-60">
<div class="col-sm-6">
<div class="mil-Team-card mil-up mil-mb-30">
<img src="img/teamimages/Screenshot 2024-09-22 000645.webp" alt="Team member">
<div class="mil-description">
<div class="mil-secrc-text">
<h5 class="mil-muted mil-mb-5"><a href="Home-2.html">Tanishq Srivastava</a></h5>
<p class="mil-link mil-light-soft mil-mb-10">Full Stack Flutter Developer</p>
<ul class="mil-social-icons mil-center">
<li><a href="https://www.linkedin.com/in/tannatsri/" target="_blank" class="social-icon"> <i class="fab fa-linkedin"></i></a></li>
<!-- <li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-behance"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-dribbble"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-twitter"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-github"></i></a></li> -->
</ul>
</div>
</div>
</div>
<div class="mil-Team-card mil-up mil-mb-30">
<img src="https://i.ibb.co/d04stVT/Whats-App-Image-2024-09-21-at-21-10-57-2716cdff.webp" alt="Team member">
<div class="mil-description">
<div class="mil-secrc-text">
<h5 class="mil-muted mil-mb-5"><a href="Home-2.html">Tanveer Raza</a></h5>
<p class="mil-link mil-light-soft mil-mb-10">Rust, Linux Systems Programming</p>
<ul class="mil-social-icons mil-center">
<li><a href="https://www.linkedin.com/in/atamakahere/" target="_blank" class="social-icon"> <i class="fab fa-linkedin"></i></a></li>
<!-- <li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-behance"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-dribbble"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-twitter"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-github"></i></a></li> -->
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<p class="mil-mobile-hidden mil-text-sm mil-mb-30" style="height: 30px; font-weight:550; font-size:16px"><span class="mil-accent">*</span>Masterminds behind CodeChef ABESEC</p>
<div class="mil-Team-card mil-up mil-mb-30">
<img src="img/teamimages/BhumikaArora_ccwebsite_Bhumika Arora.webp" alt="Bhumika-Arora-ccwebsite-Bhumika-Arora">
<div class="mil-description">
<div class="mil-secrc-text">
<h5 class="mil-muted mil-mb-5"><a href="Home-2.html">Bhumika Arora</a></h5>
<p class="mil-link mil-light-soft mil-mb-10">Analyst, KPMG</p>
<ul class="mil-social-icons mil-center">
<li><a href="https://www.linkedin.com/in/thebhumikaarora/" target="_blank" class="social-icon"> <i class="fab fa-linkedin"></i></a></li>
<!-- <li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-behance"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-dribbble"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-twitter"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-github"></i></a></li> -->
</ul>
</div>
</div>
</div>
<div class="mil-Team-card mil-up mil-mb-30">
<img src="img/teamimages/IMG_20240920_093105_Abhinav Kumar Jha (1).webp" alt="Team member">
<div class="mil-description">
<div class="mil-secrc-text">
<h5 class="mil-muted mil-mb-5"><a href="Home-2.html">Abhinav Jha</a></h5>
<p class="mil-link mil-light-soft mil-mb-10">UI/UX Designer</p>
<ul class="mil-social-icons mil-center">
<li><a href="https://www.linkedin.com/in/abhijha301/" target="_blank" class="social-icon"> <i class="fab fa-linkedin"></i></a></li>
<!-- <li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-behance"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-dribbble"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-twitter"></i></a></li>
<li><a href="#." target="_blank" class="social-icon"> <i class="fab fa-github"></i></a></li> -->
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script>
document.addEventListener('DOMContentLoaded', function () {
const cards = document.querySelectorAll('.mil-Team-card');
function isInView(element) {
const rect = element.getBoundingClientRect();
return (
rect.top >= 0 && rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
}
function toggleDescriptionVisibility() {
// Check for mobile view by detecting screen width
const isMobile = window.innerWidth <= 992;
cards.forEach(card => {
const description = card.querySelector('.mil-description');
if (isMobile) {
// On mobile: Show description when in view
if (isInView(card)) {
description.classList.add('show');
} else {
description.classList.remove('show');
}
} else {
// On desktop: Do not auto-show, hover will control visibility
description.classList.remove('show');
}
});
}
// Add scroll event listener
window.addEventListener('scroll', toggleDescriptionVisibility);
// Initial check on page load
toggleDescriptionVisibility();
// Recheck on window resize to update mobile vs desktop behavior
window.addEventListener('resize', toggleDescriptionVisibility);
});
</script>
<!-- Team end -->
<!-- reviews -->
<section class="mil-soft-bg">
<div class="container mil-p-120-120">
<div class="row">
<div class="col-lg-10">
<span class="mil-suptitle mil-suptitle-right mil-suptitle-dark mil-up">CodeChef collaborates with industry leaders, startups, and academic institutions to offer members hands-on experience and valuable Resources.<br>These partnerships foster mentorship and professional growth for all participants.</span>
</div>
</div>
<h2 class="mil-center mil-up mil-mb-60">Partners <span class="mil-thin">Fostering</span> <br>Growth <span class="mil-thin">together</span></h2>
<div class="mil-revi-pagination mil-up mil-mb-60"></div>
<div class="row mil-relative justify-content-center">
<div class="col-lg-8">
<div class="mil-slider-nav mil-soft mil-reviews-nav mil-up">
<div class="mil-slider-arrow mil-prev mil-revi-prev mil-arrow-place"></div>
<div class="mil-slider-arrow mil-revi-next mil-arrow-place"></div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" class="mil-quote-icon mil-up">
<path d="M 13.5 10 A 8.5 8.5 0 0 0 13.5 27 A 8.5 8.5 0 0 0 18.291016 25.519531 C 17.422273 29.222843 15.877848 31.803343 14.357422 33.589844 C 12.068414 36.279429 9.9433594 37.107422 9.9433594 37.107422 A 1.50015 1.50015 0 1 0 11.056641 39.892578 C 11.056641 39.892578 13.931586 38.720571 16.642578 35.535156 C 19.35357 32.349741 22 27.072581 22 19 A 1.50015 1.50015 0 0 0 21.984375 18.78125 A 8.5 8.5 0 0 0 13.5 10 z M 34.5 10 A 8.5 8.5 0 0 0 34.5 27 A 8.5 8.5 0 0 0 39.291016 25.519531 C 38.422273 29.222843 36.877848 31.803343 35.357422 33.589844 C 33.068414 36.279429 30.943359 37.107422 30.943359 37.107422 A 1.50015 1.50015 0 1 0 32.056641 39.892578 C 32.056641 39.892578 34.931586 38.720571 37.642578 35.535156 C 40.35357 32.349741 43 27.072581 43 19 A 1.50015 1.50015 0 0 0 42.984375 18.78125 A 8.5 8.5 0 0 0 34.5 10 z" fill="#000000" />
</svg>
<div class="swiper-container mil-reviews-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="mil-review-frame mil-center" data-swiper-parallax="-200" data-swiper-parallax-opacity="0">
<h5 class="mil-up mil-mb-10">Elixir</h5>
<p class="mil-mb-5 mil-upper mil-up mil-mb-30">COmbined TEch Community</p>
<p class="mil-text-xl mil-up">The combined technical community supports and nurtures creative minds, fostering an environment where learning thrives. Members collaborate to explore new ideas, solve each other's queries, and offer valuable guidance. This shared passion for problem-solving and innovation drives both individual and collective growth.</p>
</div>
</div>
<div class="swiper-slide">
<div class="mil-review-frame mil-center" data-swiper-parallax="-200" data-swiper-parallax-opacity="0">
<h5 class="mil-up mil-mb-10">GfG</h5>
<p class="mil-mb-5 mil-upper mil-up mil-mb-30">Co-Chapter</p>
<p class="mil-text-xl mil-up">As a sister tech community, they stand by the principles of explore, learn, and conquer.Our philosophies has driven us to create impactful technical events and initiatives. Through collaboration, we've inspired curious minds, fostering innovation and growth. Together, we explore new frontiers, learn from one another, and conquer challenges, making strides in the tech world and advancing the success of our collective community.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="mil-review-frame mil-center" data-swiper-parallax="-200" data-swiper-parallax-opacity="0">
<h5 class="mil-up mil-mb-10">GDSC</h5>
<p class="mil-mb-5 mil-upper mil-up mil-mb-30">Co-Chapter</p>
<p class="mil-text-xl mil-up">A sister tech community dedicated to fostering a learning environment where code meets creativity, overcoming limitations along the way. They consistently promote quality technical education, empowering individuals to innovate and grow. As a collaborative partner, they drive impactful initiatives, inspiring the next generation of tech enthusiasts.</p>
</div>
</div>
<div class="swiper-slide">
<div class="mil-review-frame mil-center" data-swiper-parallax="-200" data-swiper-parallax-opacity="0">
<h5 class="mil-up mil-mb-10">TFC</h5>
<p class="mil-mb-5 mil-upper mil-up mil-mb-30">The Frontend Club</p>
<p class="mil-text-xl mil-up">The Frontend Club is an engaging community that offers opportunities for gaining valuable skills and forming lasting bonds. Working with them is always a pleasure, as their collaborative spirit fosters support and growth. Through insightful discussions, idea sharing, and enjoying coffee together, they create a welcoming space that encourages creativity. Their dedication to building connections makes them an invaluable part of our tech journey.</p>
</div>
</div>
<div class="swiper-slide">
<div class="mil-review-frame mil-center" data-swiper-parallax="-200" data-swiper-parallax-opacity="0">
<h5 class="mil-up mil-mb-10">TensorFlow</h5>
<p class="mil-mb-5 mil-upper mil-up mil-mb-30">User Group Ghaziabad</p>
<p class="mil-text-xl mil-up">The community is a global network of developers within the Google ML Network, collaborating with TensorFlow to advance AI and machine learning.Together we explored the cutting-edge world of machine learning at the NextgenML Event: TensorFlow Edition, organized by TFUG Ghaziabad and CodeChef. This event merged expertise, innovation, and hands-on experiences, fostering a dynamic learning environment. The community looks forward to more collaborations and amazing events in the future.</p>
</div>
</div>
<div class="swiper-slide">
<div class="mil-review-frame mil-center" data-swiper-parallax="-200" data-swiper-parallax-opacity="0">
<h5 class="mil-up mil-mb-10">Hack with India</h5>
<p class="mil-mb-5 mil-upper mil-up mil-mb-30">India's biggest hackathon community</p>
<p class="mil-text-xl mil-up">Partnering with India’s largest hackathon community was a fantastic experience. They host numerous hackathons with great prizes and mentoring sessions, providing valuable networking opportunities and fostering innovation. This collaboration has enriched our journey and reinforced our commitment to supporting aspiring developers.</p>
</div>
</div>
<div class="swiper-slide">
<div class="mil-review-frame mil-center" data-swiper-parallax="-200" data-swiper-parallax-opacity="0">
<h5 class="mil-up mil-mb-10">Polygon Guild Delhi</h5>
<p class="mil-mb-5 mil-upper mil-up mil-mb-30">Event organizer</p>
<p class="mil-text-xl mil-up">It hosts various blockchain and Web3 events in Delhi and NCR, offering developers opportunities to learn and network with diverse individuals. Partnering with them has been a rewarding experience, as we support their mission of fostering knowledge and innovation in emerging technologies. Together, we create an environment that encourages exploration and growth for all participants.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- reviews end -->
<!-- partners -->
<div class="mil-soft-bg">
<div class="container mil-p-0-120">
<div class="swiper-container mil-infinite-show mil-up">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="#." class="mil-partner-frame" style="width: 100px; height: 100px;"><img src="img/icons/ccemoji1.webp" alt="logo"></a>
</div>
<div class="swiper-slide">
<a href="#." class="mil-partner-frame" style="width: 100px; height: 100px;"><img src="img/icons/ccemoji3.webp" alt="logo"></a>
</div>
<div class="swiper-slide">
<a href="#." class="mil-partner-frame" style="width: 100px; height: 100px;"><img src="img/icons/ChefMario.webp" alt="logo"></a>
</div>
<div class="swiper-slide">
<a href="#." class="mil-partner-frame" style="width: 100px; height: 100px;"><img src="img/icons/ccemoji2.webp" alt="logo"></a>
</div>
<div class="swiper-slide">
<a href="#." class="mil-partner-frame" style="width: 100px; height: 100px;"><img src="img/icons/ccemoji4.webp" alt="logo"></a>
</div>
<div class="swiper-slide">
<a href="#." class="mil-partner-frame" style="width: 100px; height: 100px;"><img src="img/icons/Group 509ST.webp" alt="logo"></a>
</div>
</div>
</div>
</div>
</div>
<!-- partners end -->
<!-- blog -->
<!-- <section>
<div class="container mil-p-120-60">
<div class="row align-items-center mil-mb-30">
<div class="col-lg-6 mil-mb-30">
<h3 class="mil-up">Popular Publications:</h3>
</div>
<div class="col-lg-6 mil-mb-30">
<div class="mil-adaptive-right mil-up">
<a href="Achievements.html" class="mil-link mil-dark mil-arrow-place">
<span>View all</span>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<a href="publication.html" class="mil-blog-card mil-mb-60">
<div class="mil-cover-frame mil-up">
<img src="img/blog/1.webp" alt="cover">
</div>
<div class="mil-post-descr">
<div class="mil-labels mil-up mil-mb-30">
<div class="mil-label mil-upper mil-accent">TECHNOLOGY</div>
<div class="mil-label mil-upper">may 24 2023</div>
</div>
<h4 class="mil-up mil-mb-30">How to Become a Graphic Designer in 10 Simple Steps</h4>
<p class="mil-post-text mil-up mil-mb-30">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eius sequi commodi dignissimos optio, beatae, eos necessitatibus nisi. Nam cupiditate consectetur nostrum qui! Repellat natus nulla, nisi aliquid, asperiores impedit tempora sequi est reprehenderit cumque explicabo, dicta. Rem nihil ullam totam ea voluptas quibusdam repudiandae id ut at iure! Totam, a!</p>
<div class="mil-link mil-dark mil-arrow-place mil-up">
<span>Read more</span>
</div>
</div>
</a>
</div>
<div class="col-lg-6">
<a href="publication.html" class="mil-blog-card mil-mb-60">
<div class="mil-cover-frame mil-up">
<img src="img/blog/2.webp" alt="cover">
</div>
<div class="mil-post-descr">
<div class="mil-labels mil-up mil-mb-30">
<div class="mil-label mil-upper mil-accent">TECHNOLOGY</div>
<div class="mil-label mil-upper">may 24 2023</div>
</div>
<h4 class="mil-up mil-mb-30">16 Best Graphic Design Online and Offline Courses</h4>
<p class="mil-post-text mil-up mil-mb-30">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eius sequi commodi dignissimos optio, beatae, eos necessitatibus nisi. Nam cupiditate consectetur nostrum qui! Repellat natus nulla, nisi aliquid, asperiores impedit tempora sequi est reprehenderit cumque explicabo, dicta. Rem nihil ullam totam ea voluptas quibusdam repudiandae id ut at iure! Totam, a!</p>
<div class="mil-link mil-dark mil-arrow-place mil-up">
<span>Read more</span>
</div>
</div>
</a>
</div>
</div>
</div>
</section> -->
<!-- blog end -->
<!-- Footer -->
<footer class="mil-dark-bg">
<div class="mi-invert-fix">
<div class="mil-animation-frame">
<div
class="mil-animation mil-position-1 mil-scale"
data-value-1="2.4" data-value-2="1.4"
style="top: 300px; right: -100px"></div>
<div
class="mil-animation mil-position-2 mil-scale"
data-value-1="2" data-value-2="1"
style="left: 150px"></div>
</div>
<div class="container mil-p-120-60">
<div class="row justify-content-between">
<div class="col-md-4 col-lg-4 mil-mb-60">
<div class="mil-muted mil-thin" id="footer_text">CodeChef ABESEC Chapter</div>
<div class="mil-up"><a href="contact.html" class="mil-button mil-arrow-place mil-mb-60" id="know-more"><span>Contact us</span></a></div>
<div><p class="mil-light-soft mil-up"
style="text-align: center;">
© 2024 CodeChef ABESEC. All rights reserved.
</p></div>
</div>
<div class="col-md-7 col-lg-6">
<div class="row justify-content-end">
<div class="col-md-6 col-lg-7"
style="margin-top: 30px;">
<nav
class="mil-footer-menu mil-mb-60"
style="align-content: center;">
<ul>
<li
class="mil-up mil-active"><a
href="Home.html">Home</a></li>
<li class="mil-up"><a
href="Events.html">Events</a></li>
<li class="mil-up"><a
href="Team.html">Team
</a></li>
<li class="mil-up"><a
href="Achievements.html">Achievements</a></li>
</ul>
</nav>
</div>
<div class="col-md-6 col-lg-5">
<div class="mil-mb-60">
<!-- <div
class="mil-muted mil-thin"
style="font-size: 18px; font-weight: bold;">Contact
Us</div> -->
<p
class="mil-light-soft mil-up"
style="margin-bottom: 0;">
19th KM Stone, NH-09,
Ghaziabad - 201009,
Uttar Pradesh, India
<span
class="mil-no-wrap">+91
1207 135 112</span>
</p>
<ul
class="mil-social-icons mil-up"
style="display: flex; gap: 15px; padding-left: 0; margin-top: 20px;">
<li><a
href="mailto:codechef@abes.ac.in"
target="_blank"
rel="noopener noreferrer"
class="social-icon">
<i
class="far fa-envelope"
style="font-size: 24px; transition: transform 0.3s ease;"></i></a>
</li>
<li><a
href="https://www.instagram.com/abesec.codechef/"
target="_blank"
rel="noopener noreferrer"
class="social-icon">
<i
class="fab fa-instagram"
style="font-size: 24px; transition: transform 0.3s ease;"></i></a>
</li>
<li><a
href="https://www.linkedin.com/company/codechef-abesec-chapter/"
target="_blank"
rel="noopener noreferrer"
class="social-icon">
<i
class="fab fa-linkedin"
style="font-size: 24px; transition: transform 0.3s ease;"></i></a>
</li>
</ul>
</div>
</div>
</div>
<!-- Map Section -->
<!-- <div class="container"
style="margin-top: 0%;">
<iframe
src="https://maps.google.com/maps?q=ABES+Engineering+College&t=&z=13&ie=UTF8&iwloc=&output=embed"
width="100%" height="200"
frameborder="0"
style="border: 0;"
allowfullscreen></iframe>
</div>
</div> -->
<!-- <div class="col-md-4 col-lg-6 mil-mb-60">
<div class="mil-vert-between">
<div class="mil-mb-30"
style="display: flex; align-items: center; justify-content: flex-start;">
<p class="mil-light-soft mil-up"
style="text-align: left; margin-right: 40px; margin-top: 20px;">
© 2024 CodeChef ABESEC. All
rights reserved.
</p>
</div>
</div>
</div> -->
</div>
</div>
</div>
</footer>
<!-- footer end -->
<!--Footer Animation Start-->
<style>
.social-icon:hover i {
transform: scale(1.2); /* Scale up icon on hover */
}
</style>
<!--Footer Animation End-->
<!-- hidden elements -->
<div class="mil-hidden-elements">
<div class="mil-dodecahedron">
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="mil-pentagon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="mil-arrow">
<path d="M 14 5.3417969 C 13.744125 5.3417969 13.487969 5.4412187 13.292969 5.6367188 L 13.207031 5.7226562 C 12.816031 6.1136563 12.816031 6.7467188 13.207031 7.1367188 L 17.070312 11 L 4 11 C 3.448 11 3 11.448 3 12 C 3 12.552 3.448 13 4 13 L 17.070312 13 L 13.207031 16.863281 C 12.816031 17.254281 12.816031 17.887344 13.207031 18.277344 L 13.292969 18.363281 C 13.683969 18.754281 14.317031 18.754281 14.707031 18.363281 L 20.363281 12.707031 C 20.754281 12.316031 20.754281 11.682969 20.363281 11.292969 L 14.707031 5.6367188 C 14.511531 5.4412187 14.255875 5.3417969 14 5.3417969 z" />
</svg> -->
<svg width="250" viewBox="0 0 300 1404" fill="none" xmlns="http://www.w3.org/2000/svg" class="mil-lines">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1 892L1 941H299V892C299 809.71 232.29 743 150 743C67.7096 743 1 809.71 1 892ZM0 942H300V892C300 809.157 232.843 742 150 742C67.1573 742 0 809.157 0 892L0 942Z" class="mil-move" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M299 146V97L1 97V146C1 228.29 67.7096 295 150 295C232.29 295 299 228.29 299 146ZM300 96L0 96V146C0 228.843 67.1573 296 150 296C232.843 296 300 228.843 300 146V96Z" class="mil-move" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M299 1H1V1403H299V1ZM0 0V1404H300V0H0Z" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M150 -4.37115e-08L150 1404L149 1404L149 0L150 -4.37115e-08Z" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M150 1324C232.29 1324 299 1257.29 299 1175C299 1092.71 232.29 1026 150 1026C67.7096 1026 1 1092.71 1 1175C1 1257.29 67.7096 1324 150 1324ZM150 1325C232.843 1325 300 1257.84 300 1175C300 1092.16 232.843 1025 150 1025C67.1573 1025 0 1092.16 0 1175C0 1257.84 67.1573 1325 150 1325Z" class="mil-move" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M300 1175H0V1174H300V1175Z" class="mil-move" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M150 678C232.29 678 299 611.29 299 529C299 446.71 232.29 380 150 380C67.7096 380 1 446.71 1 529C1 611.29 67.7096 678 150 678ZM150 679C232.843 679 300 611.843 300 529C300 446.157 232.843 379 150 379C67.1573 379 0 446.157 0 529C0 611.843 67.1573 679 150 679Z" class="mil-move" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M299 380H1V678H299V380ZM0 379V679H300V379H0Z" class="mil-move" />
</svg>
</div>
<!-- hidden elements end -->
</div>
</div>
<!-- content -->
</div>
<!-- wrapper end -->
<!-- jQuery js -->
<script src="js/plugins/jquery.min.js"></script>
<!-- swup js -->
<script src="js/plugins/swup.min.js"></script>
<!-- swiper js -->
<script src="js/plugins/swiper.min.js"></script>
<!-- fancybox js -->
<script src="js/plugins/fancybox.min.js"></script>
<!-- gsap js -->
<script src="js/plugins/gsap.min.js"></script>
<!-- scroll smoother -->
<script src="js/plugins/smooth-scroll.js"></script>
<!-- scroll trigger js -->
<script src="js/plugins/ScrollTrigger.min.js"></script>
<!-- scroll to js -->
<script src="js/plugins/ScrollTo.min.js"></script>