-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathAchievements.html
More file actions
952 lines (843 loc) · 58.6 KB
/
Achievements.html
File metadata and controls
952 lines (843 loc) · 58.6 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
<!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 -->
<!-- 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">
<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 mil-active">
<a href="#">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">
<a href="Home.html" class="mil-logo"><img src="./img/logos/LogoCC.webp" alt="CodeChef_ABESEC" style="height: 100px; width: 100px;"></a>
<div class="mil-menu-btn">
<span></span>
</div>
</div>
<!-- <div class="mil-frame-bottom">
<div class="mil-current-page"></div>
<div class="mil-back-to-top">
<a href="#top" class="mil-link mil-dark mil-arrow-place">
<span>Back to top</span>
</a>
</div>
</div> -->
</div>
<!-- frame end -->
<!-- content -->
<div class="mil-content">
<div id="swupMain" class="mil-main-transition">
<!-- banner -->
<div class="mil-inner-banner mil-p-0-120">
<div class="mil-banner-content mil-up">
<div class="mil-animation-frame">
<div class="mil-animation mil-position-4 mil-dark mil-scale" data-value-1="6"
data-value-2="1.4"></div>
</div>
<div class="container">
<ul class="mil-breadcrumbs mil-mb-60">
<li><a href="Home.html">Home</a></li>
<li><a href="Achievements.html">Collaborations & Achievements</a></li>
</ul>
<h1 class="mil-mb-60">Celebrating <span class="mil-thin">Teamwork</span> <br> Honoring
<span class="mil-thin">Achievements</span></h1>
<a href="#blog" class="mil-link mil-dark mil-arrow-place mil-down-arrow">
</a>
</div>
</div>
</div>
<!-- banner end -->
<!-- Achievements section -->
<div class="row">
<div class="col-lg-12">
<section class="mil-soft-bg">
<div class="container mil-p-120-120">
<div class="col-lg-7 mil-mb-30">
<h3 class="mil-up">Architects of Growth:</h3>
</div>
<div class="hm-card-container">
<!-- Card 1 -->
<div class="hm-card-wrapper-container">
<div class="hm-card-item">
<div class="hm-card-wrapper">
<img src="./img/achivments/background/ayush.webp" class="hm-card-image" />
</div>
<img src="./img/achivments/name/AYUSH.webp" class="hm-card-title" />
<img src="./img/achivments/character/ayush_png.webp" class="hm-card-character" />
</div>
<p class="hm-card-description">Ayush Tiwari is a skilled Frontend Developer at JTG, with a focus on MERN and Web3 tech.He is committed to navigating the digital landscape and fostering innovation in web development. He thrives on collaborating with teams to create user-centric solutions</p>
</div>
<!-- Card 2 -->
<div class="hm-card-wrapper-container">
<div class="hm-card-item">
<div class="hm-card-wrapper">
<img src="./img/achivments/background/ishan.webp" class="hm-card-image" />
</div>
<img src="./img/achivments/name/ISHAN.webp" class="hm-card-title" />
<img src="./img/achivments/character/Ishan 1.webp" class="hm-card-character" />
</div>
<p class="hm-card-description">Ishan Grover, a successful intern in the esteemed Google Summer of Code (GSoC) program, received a stipend of $3,000. The achievement showcases his outstanding coding abilities and dedication to contributing to open-source projects</p>
</div>
<!-- Card 3 -->
<div class="hm-card-wrapper-container">
<div class="hm-card-item">
<div class="hm-card-wrapper">
<img src="./img/achivments/background/kartik.webp" class="hm-card-image" />
</div>
<img src="./img/achivments/name/KARTIK.webp" class="hm-card-title" />
<img src="./img/achivments/character/kar_char.webp" class="hm-card-character" />
</div>
<p class="hm-card-description">Kartik Pujari achieved an impressive score of 485 in GATE 2024, demonstrating his dedication and hard work in engineering. His outstanding performance reflects a strong commitment to academic excellence and a genuine passion for learning</p>
</div>
</div>
<div class="container mil-p-0-120">
<div class="swiper-container mil-infinite-show mil-up swiper-initialized swiper-horizontal swiper-pointer-events swiper-free-mode swiper-backface-hidden" style="translate: none; rotate: none; scale: none; transform: translate(0px, 0px); opacity: 1;">
<div class="swiper-wrapper" id="swiper-wrapper-1d35a184a71915ce" aria-live="off" style="transform: translate3d(-1712px, 0px, 0px); transition-duration: 0ms;"><div class="swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active" role="group" aria-label="3 / 4" data-swiper-slide-index="2" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-duplicate swiper-slide-duplicate-next" role="group" aria-label="4 / 4" data-swiper-slide-index="3" style="width: 398px; margin-right: 30px;">
<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" role="group" aria-label="1 / 4" data-swiper-slide-index="0" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-prev" role="group" aria-label="2 / 4" data-swiper-slide-index="1" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-active" role="group" aria-label="3 / 4" data-swiper-slide-index="2" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-next" role="group" aria-label="4 / 4" data-swiper-slide-index="3" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-duplicate" role="group" aria-label="1 / 4" data-swiper-slide-index="0" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-duplicate swiper-slide-duplicate-prev" role="group" aria-label="2 / 4" data-swiper-slide-index="1" style="width: 398px; margin-right: 30px;">
<a href="#." class="mil-partner-frame" style="width: 100px; height: 100px;"><img src="img/icons/ccemoji3.webp" alt="logo"></a>
</div></div>
<span class="swiper-notification" aria-live="assertive" aria-atomic="true"></span></div>
</div>
</div>
</section>
</div>
</div>
<!-- Achievements section ends -->
<!-- blog -->
<section>
<div class="container mil-p-120-120">
<div class="row align-items-center mil-mb-30">
<div class="col-lg-4 mil-mb-30">
<h3 class="mil-up">Synergies :</h3>
</div>
<div class="col-lg-8 mil-mb-30">
<div class="mil-adaptive-right mil-up">
</div>
</div>
</div>
<!-- collabration starts -->
<div class="row">
<div class="col-lg-12">
<section class="mil-soft-bg">
<div class="container mil-p-120-120">
<div class="row">
<div class="col-lg">
<span class="mil-suptitle mil-suptitle-right mil-suptitle-dark mil-up"
style="text-align: center;">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">Collaborative Partners for Shared Growth
<div class="fistbump container">
<span class="left-fist"><img
src="./img/icons/purple-hand.cf85ef27[1].webp"></span>
<span class="right-fist"><img
src="./img/icons/robot-hand.477bc381[1].webp"></span>
</div>
</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>
<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">
Tech Community</p>
<p class="mil-text-xl mil-up">The 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.
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">GDG</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 , hosting 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">Polygon Guild Delhi 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>
</div>
<!-- collabration ends -->
</div>
</div>
</section>
<!-- blog end -->
<!-- image carousel -->
<div class="row align-items-center mil-mb-30">
<div class="col-lg-10 mil-mb-10">
<h3 class="mil-up" style="margin-left: 4rem;">Events you won’t miss! </h3>
</div>
</div>
<div class="carousel-container">
<input type="radio" name="carousel-slider" id="carousel-item-1" checked>
<input type="radio" name="carousel-slider" id="carousel-item-2">
<input type="radio" name="carousel-slider" id="carousel-item-3">
<input type="radio" name="carousel-slider" id="carousel-item-4">
<input type="radio" name="carousel-slider" id="carousel-item-5">
<input type="radio" name="carousel-slider" id="carousel-item-6">
<div class="carousel-cards">
<label class="carousel-card" for="carousel-item-1" id="carousel-song-1">
<img src="./img/works/4/Rusted.webp" alt="img">
</label>
<label class="carousel-card" for="carousel-item-2" id="carousel-song-2">
<img src="./img/beyond_code/1.webp" alt="img">
</label>
<label class="carousel-card" for="carousel-item-3" id="carousel-song-3">
<img src="./img/converted/crime.webp" alt="img">
</label>
<label class="carousel-card" for="carousel-item-4" id="carousel-song-4">
<img src="./img/coc/1.webp" alt="img">
</label>
<label class="carousel-card" for="carousel-item-5" id="carousel-song-5">
<img src="./img/converted/headnode.webp" alt="img">
</label>
<label class="carousel-card" for="carousel-item-6" id="carousel-song-6">
<img src="./img/partners/h.webp" alt="img">
</label>
</div>
</div>
<div class="container mil-p-0-120">
<div class="swiper-container mil-infinite-show mil-up swiper-initialized swiper-horizontal swiper-pointer-events swiper-free-mode swiper-backface-hidden" style="translate: none; rotate: none; scale: none; transform: translate(0px, 0px); opacity: 1;">
<div class="swiper-wrapper" id="swiper-wrapper-1d35a184a71915ce" aria-live="off" style="transform: translate3d(-1712px, 0px, 0px); transition-duration: 0ms;margin-top: 80px;"><div class="swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active" role="group" aria-label="3 / 4" data-swiper-slide-index="2" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-duplicate swiper-slide-duplicate-next" role="group" aria-label="4 / 4" data-swiper-slide-index="3" style="width: 398px; margin-right: 30px;">
<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" role="group" aria-label="1 / 4" data-swiper-slide-index="0" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-prev" role="group" aria-label="2 / 4" data-swiper-slide-index="1" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-active" role="group" aria-label="3 / 4" data-swiper-slide-index="2" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-next" role="group" aria-label="4 / 4" data-swiper-slide-index="3" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-duplicate" role="group" aria-label="1 / 4" data-swiper-slide-index="0" style="width: 398px; margin-right: 30px;">
<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 swiper-slide-duplicate swiper-slide-duplicate-prev" role="group" aria-label="2 / 4" data-swiper-slide-index="1" style="width: 398px; margin-right: 30px;">
<a href="#." class="mil-partner-frame" style="width: 100px; height: 100px;"><img src="img/icons/ccemoji3.webp" alt="logo"></a>
</div></div>
<span class="swiper-notification" aria-live="assertive" aria-atomic="true"></span></div>
</div>
<!-- image carousel -->
<!-- call to action -->
<section class="mil-soft-bg">
<div class="container mil-p-120-120">
<div class="row">
</div>
<div class="mil-center">
<h2 class="mil-up mil-mb-60">Got queries? Drop your email and get in touch with us!</h2>
<div class="row justify-content-center mil-up">
<div class="mil-center">
<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>
</div>
</div>
</div>
</section>
<!-- call to action 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-->
<!-- footer 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 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>
<!-- ashley js -->
<script src="js/main.js"></script>
<script>
// Function to check if an element is in the viewport
function isElementInViewport(el) {
const rect = el.getBoundingClientRect();
return rect.top >= 0 && rect.left >= 0 && rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && rect.right <= (window.innerWidth || document.documentElement.clientWidth);
}
// Function to trigger animation on scroll (only on mobile)
function triggerAnimationsOnScroll() {
// Only trigger on mobile (screen width 768px or less)
if (window.innerWidth <= 768) {
const cards = document.querySelectorAll('.hm-card-wrapper-container');
cards.forEach(card => {
const cardItem = card.querySelector('.hm-card-item');
const cardWrapper = card.querySelector('.hm-card-wrapper');
const cardTitle = card.querySelector('.hm-card-title');
const cardCharacter = card.querySelector('.hm-card-character');
if (isElementInViewport(card)) {
// Add active class to trigger animation
cardWrapper.classList.add('active');
cardTitle.classList.add('active');
cardCharacter.classList.add('active');
} else {
// Remove active class to reset animation
cardWrapper.classList.remove('active');
cardTitle.classList.remove('active');
cardCharacter.classList.remove('active');
}
});
}
}
// Listen for scroll events
window.addEventListener('scroll', triggerAnimationsOnScroll);
// Trigger on page load in case some cards are already in view
document.addEventListener('DOMContentLoaded', triggerAnimationsOnScroll);
</script>
</body>
</html>