generated from CodeChefVIT/template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
1045 lines (1020 loc) · 48.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="subject" content="CodeChef-VIT" />
<meta
name="description"
content="CodeChef-VIT is a non-commercial organisation with a goal to provide a platform for programmers and developers everywhere to meet, compete & have fun."
/>
<meta
name="keywords"
content="CodeChefVIT, CodeChef-VIT, vit, VIT, VIT-Vellore, Vit, CodeChef, Vellore, Student, Chapter, Club, club, CLUB, CHAPTER, chapter, Education"
/>
<meta name="copyright" content="CodeChef-VIT" />
<meta name="language" content="en" />
<meta name="url" content="https://www.codechefvit.com/" />
<meta name="coverage" content="Worldwide" />
<meta name="distribution" content="Global" />
<meta name="target" content="all" />
<meta name="rating" content="General" />
<meta name="og:country-name" content="India" />
<meta name="og:region" content="India" />
<meta property="og:url" content="https://www.codechefvit.com/" />
<meta name="og:site_name" content="CodeChef-VIT" />
<meta property="og:type" content="Website" />
<meta property="og:title" content="CodeChef-VIT" />
<meta
property="og:description"
content="CodeChef-VIT is a non-commercial organisation with a goal to provide a platform for programmers and developers everywhere to meet, compete & have fun."
/>
<meta property="og:site_name" content="CodeChef-VIT" />
<meta name="twitter:card" content="website" />
<meta name="twitter:site" content="CodeChef-VIT" />
<meta name="twitter:title" content="CodeChef-VIT" />
<meta
name="twitter:description"
content="CodeChef-VIT is a non-commercial organisation with a goal to provide a platform for programmers and developers everywhere to meet, compete & have fun."
/>
<meta name="twitter:creator" content="@codechefvit" />
<meta itemprop="name" content="CodeChef-VIT" />
<meta
itemprop="description"
content="CodeChef-VIT is a non-commercial organisation with a goal to provide a platform for programmers and developers everywhere to meet, compete & have fun."
/>
<link rel="icon" type="image/png" href="./logo.png" />
<link rel="apple-touch-icon" type="image/png" href="./logo.png" />
<title>CodeChef-VIT</title>
<link rel="stylesheet" href="/LandingPage/mainStyle.css" />
<link rel="stylesheet" href="/LandingPage/Navbar.css" />
<link rel="stylesheet" href="/LandingPage/aboutUs.css" />
<link rel="stylesheet" href="/LandingPage/departments.css" />
<link rel="stylesheet" href="/LandingPage/contactUs.css" />
<link rel="stylesheet" href="/LandingPage/projects.css" />
<link rel="stylesheet" href="/LandingPage/footer.css" />
<link rel="stylesheet" href="/LandingPage/sponsors.css" />
<link rel="stylesheet" href="/LandingPage/devices.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<script src="https://unpkg.com/typewriter-effect@latest/dist/core.js"></script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
</style>
</head>
<body>
<section id="home">
<nav class="navbar">
<div id="logo">
<img src="../Images/codechef_logo_1.svg" alt="Logo" />
</div>
<div class="navbarUl">
<ul>
<li class="items"><a href="/#home">Home</a></li>
<li class="items">
<a href="/events/" target="">Events</a>
</li>
<li class="items"><a href="/teams/">Team</a></li>
<li class="items">
<a
href="https://www.youtube.com/c/CodeChefVIT/videos"
target="_blank"
>Webinars</a
>
</li>
<li class="items">
<a
href="https://projects.codechefvit.com"
target="_blank"
>Projects</a
>
</li>
<li class="items">
<a href="/#contactUs">Contact Us</a>
</li>
<li class="barsNavLi">
<div class="barsNav"></div>
<div class="barsNav"></div>
<div class="barsNav"></div>
</li>
</ul>
</div>
</nav>
<div class="heroDiv">
<div class="navbarHamDiv">
<ul class="navHomeList">
<li class="nav-cross">
<img
class="nav-cross-image"
src="../Images/entypo_cross.svg"
alt=""
/>
</li>
<li
onclick="location.href='/#home'"
class="home-nav-items"
>
<a href="/index.html">Home</a>
</li>
<li
onclick="location.href='/events/'"
class="home-nav-items"
>
<a href="/events/">Events</a>
</li>
<li
onclick="windows.open('https://www.youtube.com/c/CodeChefVIT/videos')"
class="home-nav-items"
>
<a
href="https://www.youtube.com/c/CodeChefVIT/videos"
target="_blank"
>Webinars</a
>
</li>
<li
onclick="windows.open('https://projects.codechefvit.com')"
class="home-nav-items"
>
<a
href="https://projects.codechefvit.com"
target="_blank"
>Projects</a
>
</li>
<li
onclick="location.href='/teams/'"
class="home-nav-items"
>
<a href="/teams/">Team</a>
</li>
<li
onclick="location.href='/#contactUs'"
class="home-nav-items"
>
<a href="/#contactUs">Contact Us</a>
</li>
</ul>
</div>
<div class="hero">
<p class="Sub-title">
CodeChef-VIT believes in the notion of learning by doing
</p>
<p class="Hero-title1">At CodeChef-VIT we believe</p>
<p class="Hero-title2">in<span id="app"></span></p>
</div>
<div class="socialsFloat">
<a
href="https://www.instagram.com/codechefvit/"
target="_blank"
>
<svg
class="bigsocial"
width="48"
height="48"
viewBox="0 0 48 48"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M24 4.32187C30.4125 4.32187 31.1719 4.35 33.6938 4.4625C36.0375 4.56562 37.3031 4.95938 38.1469 5.2875C39.2625 5.71875 40.0688 6.24375 40.9031 7.07812C41.7469 7.92188 42.2625 8.71875 42.6938 9.83438C43.0219 10.6781 43.4156 11.9531 43.5188 14.2875C43.6313 16.8187 43.6594 17.5781 43.6594 23.9813C43.6594 30.3938 43.6313 31.1531 43.5188 33.675C43.4156 36.0188 43.0219 37.2844 42.6938 38.1281C42.2625 39.2438 41.7375 40.05 40.9031 40.8844C40.0594 41.7281 39.2625 42.2438 38.1469 42.675C37.3031 43.0031 36.0281 43.3969 33.6938 43.5C31.1625 43.6125 30.4031 43.6406 24 43.6406C17.5875 43.6406 16.8281 43.6125 14.3063 43.5C11.9625 43.3969 10.6969 43.0031 9.85313 42.675C8.7375 42.2438 7.93125 41.7188 7.09688 40.8844C6.25313 40.0406 5.7375 39.2438 5.30625 38.1281C4.97813 37.2844 4.58438 36.0094 4.48125 33.675C4.36875 31.1438 4.34063 30.3844 4.34063 23.9813C4.34063 17.5688 4.36875 16.8094 4.48125 14.2875C4.58438 11.9437 4.97813 10.6781 5.30625 9.83438C5.7375 8.71875 6.2625 7.9125 7.09688 7.07812C7.94063 6.23438 8.7375 5.71875 9.85313 5.2875C10.6969 4.95938 11.9719 4.56562 14.3063 4.4625C16.8281 4.35 17.5875 4.32187 24 4.32187ZM24 0C17.4844 0 16.6688 0.028125 14.1094 0.140625C11.5594 0.253125 9.80625 0.665625 8.2875 1.25625C6.70312 1.875 5.3625 2.69062 4.03125 4.03125C2.69063 5.3625 1.875 6.70313 1.25625 8.27813C0.665625 9.80625 0.253125 11.55 0.140625 14.1C0.028125 16.6687 0 17.4844 0 24C0 30.5156 0.028125 31.3312 0.140625 33.8906C0.253125 36.4406 0.665625 38.1938 1.25625 39.7125C1.875 41.2969 2.69063 42.6375 4.03125 43.9688C5.3625 45.3 6.70313 46.125 8.27813 46.7344C9.80625 47.325 11.55 47.7375 14.1 47.85C16.6594 47.9625 17.475 47.9906 23.9906 47.9906C30.5063 47.9906 31.3219 47.9625 33.8813 47.85C36.4313 47.7375 38.1844 47.325 39.7031 46.7344C41.2781 46.125 42.6188 45.3 43.95 43.9688C45.2812 42.6375 46.1063 41.2969 46.7156 39.7219C47.3063 38.1938 47.7188 36.45 47.8313 33.9C47.9438 31.3406 47.9719 30.525 47.9719 24.0094C47.9719 17.4938 47.9438 16.6781 47.8313 14.1188C47.7188 11.5688 47.3063 9.81563 46.7156 8.29688C46.125 6.70312 45.3094 5.3625 43.9688 4.03125C42.6375 2.7 41.2969 1.875 39.7219 1.26562C38.1938 0.675 36.45 0.2625 33.9 0.15C31.3313 0.028125 30.5156 0 24 0Z"
fill="white"
/>
<path
d="M24 11.6719C17.1938 11.6719 11.6719 17.1938 11.6719 24C11.6719 30.8062 17.1938 36.3281 24 36.3281C30.8062 36.3281 36.3281 30.8062 36.3281 24C36.3281 17.1938 30.8062 11.6719 24 11.6719ZM24 31.9969C19.5844 31.9969 16.0031 28.4156 16.0031 24C16.0031 19.5844 19.5844 16.0031 24 16.0031C28.4156 16.0031 31.9969 19.5844 31.9969 24C31.9969 28.4156 28.4156 31.9969 24 31.9969Z"
fill="white"
/>
<path
d="M39.6937 11.1843C39.6937 12.778 38.4 14.0624 36.8156 14.0624C35.2219 14.0624 33.9375 12.7687 33.9375 11.1843C33.9375 9.59053 35.2313 8.30615 36.8156 8.30615C38.4 8.30615 39.6937 9.5999 39.6937 11.1843Z"
fill="white"
/>
</svg>
</a>
<a href="https://github.com/CodeChefVIT" target="_blank">
<!-- <svg class="bigsocial" width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M15.1003 43.5C33.2091 43.5 43.1166 28.4935 43.1166 15.4838C43.1166 15.0619 43.1072 14.6307 43.0884 14.2088C45.0158 12.815 46.679 11.0886 48 9.11066C46.205 9.90926 44.2993 10.4308 42.3478 10.6575C44.4026 9.42588 45.9411 7.491 46.6781 5.21159C44.7451 6.35718 42.6312 7.16528 40.4269 7.60128C38.9417 6.02318 36.978 4.97829 34.8394 4.62816C32.7008 4.27803 30.5064 4.64216 28.5955 5.66425C26.6846 6.68635 25.1636 8.30947 24.2677 10.2827C23.3718 12.2559 23.1509 14.4693 23.6391 16.5807C19.725 16.3842 15.8959 15.3675 12.4 13.5963C8.90405 11.825 5.81939 9.33893 3.34594 6.29909C2.0888 8.46655 1.70411 11.0314 2.27006 13.4722C2.83601 15.9131 4.31013 18.047 6.39281 19.44C4.82926 19.3904 3.29995 18.9694 1.93125 18.2119V18.3338C1.92985 20.6084 2.7162 22.8132 4.15662 24.5736C5.59704 26.334 7.60265 27.5412 9.8325 27.99C8.38411 28.3863 6.86396 28.4441 5.38969 28.1588C6.01891 30.1149 7.24315 31.8258 8.89154 33.0527C10.5399 34.2796 12.5302 34.9613 14.5847 35.0025C11.0968 37.7423 6.78835 39.2283 2.35313 39.2213C1.56657 39.2201 0.780798 39.1719 0 39.0769C4.50571 41.9676 9.74706 43.5028 15.1003 43.5Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="48" height="48" fill="white"/>
</clipPath>
</defs>
</svg> -->
<svg
class="bigsocial"
width="48"
height="48"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 0C5.374 0 0 5.373 0 12C0 17.302 3.438 21.8 8.207 23.387C8.806 23.498 9 23.126 9 22.81V20.576C5.662 21.302 4.967 19.16 4.967 19.16C4.421 17.773 3.634 17.404 3.634 17.404C2.545 16.659 3.717 16.675 3.717 16.675C4.922 16.759 5.556 17.912 5.556 17.912C6.626 19.746 8.363 19.216 9.048 18.909C9.155 18.134 9.466 17.604 9.81 17.305C7.145 17 4.343 15.971 4.343 11.374C4.343 10.063 4.812 8.993 5.579 8.153C5.455 7.85 5.044 6.629 5.696 4.977C5.696 4.977 6.704 4.655 8.997 6.207C9.954 5.941 10.98 5.808 12 5.803C13.02 5.808 14.047 5.941 15.006 6.207C17.297 4.655 18.303 4.977 18.303 4.977C18.956 6.63 18.545 7.851 18.421 8.153C19.191 8.993 19.656 10.064 19.656 11.374C19.656 15.983 16.849 16.998 14.177 17.295C14.607 17.667 15 18.397 15 19.517V22.81C15 23.129 15.192 23.504 15.801 23.386C20.566 21.797 24 17.3 24 12C24 5.373 18.627 0 12 0Z"
fill="white"
/>
</svg>
</a>
<a
href="https://www.youtube.com/c/CodeChefVIT"
target="_blank"
>
<svg
class="bigsocial LastSocial"
width="48"
height="48"
viewBox="0 0 48 48"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M47.5219 14.4001C47.5219 14.4001 47.0531 11.0907 45.6094 9.6376C43.7812 7.7251 41.7375 7.71572 40.8 7.60322C34.0875 7.11572 24.0094 7.11572 24.0094 7.11572H23.9906C23.9906 7.11572 13.9125 7.11572 7.2 7.60322C6.2625 7.71572 4.21875 7.7251 2.39062 9.6376C0.946875 11.0907 0.4875 14.4001 0.4875 14.4001C0.4875 14.4001 0 18.2907 0 22.172V25.8095C0 29.6907 0.478125 33.5813 0.478125 33.5813C0.478125 33.5813 0.946875 36.8907 2.38125 38.3438C4.20937 40.2563 6.60938 40.1907 7.67813 40.397C11.5219 40.7626 24 40.8751 24 40.8751C24 40.8751 34.0875 40.8563 40.8 40.3782C41.7375 40.2657 43.7812 40.2563 45.6094 38.3438C47.0531 36.8907 47.5219 33.5813 47.5219 33.5813C47.5219 33.5813 48 29.7001 48 25.8095V22.172C48 18.2907 47.5219 14.4001 47.5219 14.4001ZM19.0406 30.2251V16.7345L32.0062 23.5032L19.0406 30.2251Z"
fill="white"
/>
</svg>
</a>
</div>
</div>
<div class="heroArrowDiv">
<a class="heroArrow" href="#aboutUs"
><img src="../Images/Group 22.png" alt=""
/></a>
</div>
</section>
<section id="aboutUs">
<div class="aboutUsDiv">
<h2 class="aboutUsTitle">About us</h2>
</div>
<div class="aboutUsDiv2">
<p class="aboutUsPara">
Our primary intention is to promote all - round development
of students through interactive sessions, events, workshops
and projects that help them perceive real-world problems. We
strive hard to educate and guide our members by equipping
them with technical and management skills, thereby enabling
them to make significant contributions towards the
community.
</p>
</div>
</section>
<section id="departments">
<div class="departmentsDiv">
<h2 class="departmentsTitle">Departments</h2>
</div>
<!-- First row -->
<div id="departmentsCardsFirstRow">
<div class="cardFR">
<img
class="departmentCardimage"
src="../Images/Departments/technical.svg"
alt="technical svg"
/>
<p class="cardTitle">Technical</p>
<h2>Technical</h2>
<span
>Here at CodeChef-VIT we love to make stuff that makes
life easier and take great pride in our tech team that
converts these mere ideas into working and usable
implementations.</span
>
</div>
<div class="cardFR">
<img
class="departmentCardimage"
src="../Images/Departments/management.svg"
alt="management svg"
/>
<p class="cardTitle">Management</p>
<h2>Management</h2>
<span
>The cornerstone of CodeChef-VIT's most successful
events and workshops, our management domain makes sure
each of our events outperforms the previous one.</span
>
</div>
<div class="cardFRCompetitive">
<img
class="departmentCardimageCompetitive"
src="../Images/Departments/competitive.svg"
alt="competitive svg"
/>
<p class="cardTitleCompetitve">Competitive Coding</p>
<h2>Competitive Coding</h2>
<span
>Our CC domain boasts of great problem solving and
analytical skills and always makes sure it keeps raising
the bar consistently to outperform themselves.</span
>
</div>
</div>
<!-- Second row -->
<div id="departmentsCardsSecondRow">
<div class="cardFR">
<img
class="departmentCardimage"
src="../Images/Departments/design.svg"
alt="designsvg"
/>
<p class="cardTitle">Design</p>
<h2>Design</h2>
<span
>From designing interactive web illustrations to graphic
UI elements, our design team never fails to deliver when
it comes to etching out to their imagination on a
digital canvas.</span
>
</div>
<div class="cardFRCompetitive">
<img
class="departmentCardimage"
src="../Images/Departments/editorial.svg "
alt="editorial svg"
/>
<p class="cardTitle">Editorial</p>
<h2>Editorial</h2>
<span
>From blogging to project documentation, from technical
and web content writing to event descriptions, our
editorial team does it all to perfection.</span
>
</div>
</div>
</section>
<section id="projects">
<div class="projectContainer">
<div class="projectTitleDiv">
<h1 class="projectsTitle">Our Projects</h1>
</div>
<!-- <div class="projectTabs">
<div class="blackBox1"></div>
<div class="blackBox2"></div>
<ul>
<li class="tab" id="all">All</li>
<li class="tab" id="web">Web</li>
<li class="tab Apps" id="app">Apps</li>
</ul>
</div> -->
<div class="projectShowcase">
<div class="showcaseWrapper">
<div class="showcaseCard">
<img
src="../Images/Projects/devsoc21-P1.png"
alt=""
/>
<div class="info">
<h1>DevSoc'21</h1>
<p>
The official website for DEVSOC 2021 by
CodeChef-VIT.
</p>
<h3>WEB</h3>
<a
href="https://github.com/CodeChefVIT/DevSoc21"
target="_blank"
class="btn"
>View Project</a
>
</div>
</div>
<div class="showcaseCard">
<img
src="../Images/Projects/devsoc_admin-P2.png"
alt=""
/>
<div class="info">
<h1>HackScore Admin</h1>
<p>
This app was made to make the evaluation of
participants in CodeChef-VIT's flagship
event, DEVSOC 2020.
</p>
<h3>APP</h3>
<a
href="https://github.com/CodeChefVIT/devsoc_admin"
target="_blank"
class="btn"
>View Project</a
>
</div>
</div>
<div class="showcaseCard">
<img src="../Images/Projects/CET-P3.png" alt="" />
<div class="info">
<h1>Common Entry Test</h1>
<p>
A portal to hold all the chapters/clubs
related recruitments
</p>
<h3>WEB</h3>
<a
href="https://github.com/CodeChefVIT/Common-Entry-Test"
target="_blank"
class="btn"
>View Project</a
>
</div>
</div>
</div>
<div class="showcaseWrapper">
<div class="showcaseCard">
<img
src="../Images/Projects/Engagement Monitor-P4.png"
alt=""
/>
<div class="info">
<h1>Engagement Monitor</h1>
<p>
A web application to help you analyse active
or disinterested members of a WhatsApp
group.
</p>
<h3>WEB</h3>
<a
href="https://github.com/CodeChefVIT/engagement-monitor"
target="_blank"
class="btn"
>View Project</a
>
</div>
</div>
<div class="showcaseCard">
<img src="../Images/Projects/bookmark.png" alt="" />
<div class="info">
<h1>Universal Bookmark App</h1>
<p>
A one stop location for links, photos and
videos you are interested in.
</p>
<h3>APP</h3>
<a
href="https://github.com/CodeChefVIT/Universal-Bookmark-App"
target="_blank"
class="btn"
>View Project</a
>
</div>
</div>
<div class="showcaseCard">
<img
src="../Images/Projects/sms_app-P6.png"
alt=""
/>
<div class="info">
<h1>SMS App</h1>
<p>
App to send bulk messages to multiple
contacts at same time.
</p>
<h3>APP</h3>
<a
href="https://github.com/CodeChefVIT/sms_app"
target="_blank"
class="btn"
>View Project</a
>
</div>
</div>
</div>
<div class="showcaseWrapper">
<div class="showcaseCard">
<img
src="../Images/Projects/whatsapp-groupadd-P7.png"
alt=""
/>
<div class="info">
<h1>WhatsApp GroupAdd</h1>
<p>
WhatsApp GroupAdd is a Python code which
helps it users to add people to a specific
WhatsApp group without directly saving their
numbers.
</p>
<h3>WEB</h3>
<a
href="https://github.com/CodeChefVIT/whatsapp-groupadd"
target="_blank"
class="btn"
>View Project</a
>
</div>
</div>
<div class="showcaseCard">
<img
class="projectsImage"
src="../Images/Projects/RoadToDevSoc-P8.png"
alt=""
/>
<div class="info">
<h1>RoadToDevSoc'21</h1>
<p>
Official Website showcasing the roadmap for
all the events before DevSoc'21
</p>
<h3>WEB</h3>
<a
href="https://github.com/CodeChefVIT/Road-To-DEVSOC-Landing"
target="_blank"
class="btn"
>View Project</a
>
</div>
</div>
<div class="showcaseCard">
<img
src="../Images/Projects/quizzieImage.png"
alt=""
/>
<div class="info">
<h1>Quizzie</h1>
<p>
Open Sourced Quiz Portal which can be used
for any event / competition with a custom
leaderboard.
</p>
<h3>WEB</h3>
<a
href="https://github.com/CodeChefVIT/Quizzie"
target="_blank"
class="btn"
>View Project</a
>
</div>
</div>
</div>
</div>
<a href="https://projects.codechefvit.com" target="_blank"
><button class="viewAllBtn">View All →</button></a
>
</div>
</section>
<section id="sponsors">
<div class="sponsorsDiv">
<h2 class="sponsorsText">Sponsors</h2>
</div>
<div class="sponsorsIconsDiv">
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/azure.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/balsamiq.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/bugsee.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/codingBlocks.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/creativeTim.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/crowdera.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/devfolio.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/fox.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/jaleshCruise.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/jetbrains.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/linode.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/martic.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/progate.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/rosenfeld.svg"
alt=""
/>
<!-- for animation sake -->
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/azure.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/balsamiq.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/bugsee.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/codingBlocks.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/creativeTim.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/crowdera.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/devfolio.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/fox.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/jaleshCruise.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/jetbrains.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/linode.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/martic.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/progate.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/rosenfeld.svg"
alt=""
/>
<!-- for animation sake -->
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/azure.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/balsamiq.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/bugsee.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/codingBlocks.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/creativeTim.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/crowdera.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/devfolio.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/fox.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/jaleshCruise.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/jetbrains.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/linode.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/martic.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/progate.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/rosenfeld.svg"
alt=""
/>
<!-- for animation sake -->
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/azure.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/balsamiq.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/bugsee.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/codingBlocks.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/creativeTim.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/crowdera.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/devfolio.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/fox.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/jaleshCruise.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/jetbrains.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/linode.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/martic.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/progate.svg"
alt=""
/>
<img
class="sponsorsIconsImg"
src="../Images/Sponsors/rosenfeld.svg"
alt=""
/>
</div>
<div class="brochure-button-div">
<a href="./LandingPage/brochure2020 dollars.pdf" download
><button class="viewAllBtn">
Brochure<i
class="fa fa-download"
aria-hidden="true"
></i></button
></a>
</div>
</section>
<section id="contactUs">
<div class="contactUsDiv">
<h2 class="contactUsTitle">Contact Us</h2>
</div>
<div class="contactUsDiv2">
<div class="contactBox">
<form
action="mailto:[email protected]"
method="POST"
enctype="text/plain"
>
<div class="contactFormDiv">
<div class="contact-form">
<label for="E-mail">Your Email: </label>
<input
type="email"
name="E-mail"
id="E-mail"
placeholder="Enter your Email"
/>
</div>
<div class="contact-form Message">
<label for="msg">Your Message: </label>
<textarea
name="msg"
id="msg"
cols="30"
rows="9"
placeholder="Enter your Message"
></textarea>
</div>
</div>
<input class="sendBtn" type="submit" value="Send" />
<!-- <button class="sendBtn">Send</button> -->
</form>
</div>
</div>
</section>
<!-- Scroll to top Button -->
<button class="scroll-to-top"><i class="fa fa-chevron-up"></i></button>
<section class="footer">
<div class="footerDiv">
<img
src="../Images/codechef_logo_1.svg"
alt="Codechef logo footer"
/>
<div class="footerContentDiv">
<div class="footerContentTextDiv">
<p class="footerContentText">
CodeChef-VIT is a non-commercial organization with a
goal to provide a platform for programmers and
developers everywhere to meet, compete & have fun.
At CodeChef-VIT, we believe in the words of Matt
Mullenweg - “Technology is best when it brings
people together”.
</p>
</div>
<div class="footerLinksContainerDiv">
<div class="footerLinksDiv">
<ul>
<li><a href="/index.html">Home</a></li>
<li>
<a
href="https://medium.com/codechef-vit"
target="_blank"
>Blog</a
>
</li>
<li><a href="/Teams/">Team</a></li>
<li class="footerLinkLast">
<a
href="https://projects.codechefvit.com"
target="_blank"
>Projects</a
>
</li>
</ul>
</div>
<div class="footerLinksDiv SecondRow">
<ul>
<li><a href="/Events/">Events</a></li>
<li>
<a
href="https://www.youtube.com/c/CodeChefVIT/videos"
target="_blank"
>Webinars</a
>
</li>
<li><a href="#sponsors">Sponsors</a></li>
<!-- <li class="footerLinkLast"><a href="#">App</a></li> -->
</ul>
</div>
</div>
</div>
<div class="footerLineBreak"></div>
<div class="footerBottom">
<div class="footerBottomCopyrightDiv">
<!-- <img src="../Images/Socials/copyright.svg" alt="copyright svg"> -->
<span
>© Copyright 2021 | CodeChef-VIT | All rights
reserved.</span
>
</div>
<div class="footerSocials">
<a
href=" https://www.facebook.com/codechefvit/ "
target="_black"
><img
class="footerSocialImage"
src="../Images/Socials/Facebook - Negative.svg "
alt=" "
/></a>
<a
href="https://twitter.com/codechefvit?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor"
target="_black"
><img
class="footerSocialImage"
src="../Images/Socials/Twitter - Negative.svg "
alt=" "
/></a>
<a
href="https://www.linkedin.com/company/codechef-vit-chapter/mycompany/"