-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
2127 lines (1952 loc) · 134 KB
/
index.html
File metadata and controls
2127 lines (1952 loc) · 134 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 class=no-js lang=en>
<head>
<meta http-equiv=content-type content="text/html; charset=utf-8" />
<meta http-equiv=X-UA-Compatible content="IE=edge" />
<meta name=viewport content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>hackCBS 8.0 | India's Biggest Student-run Hackathon | November 2025 | Offline Hackathon</title>
<meta name="description"
content="India's Biggest Student-run Hackathon | 9th & 10th November 2025 | Previously Delhi Universty's first ever hackathon-cum-conference and ASIA's first ever MLH member hackathon| Prizes worth $1,50,000 USD, Unlimited Swag and much more. Come and join us for the biggest offline event of India." />
<meta name="keywords"
content=" India's Biggest Student-run Hackathon, hackathon cum conference, tech conference, conference, hackathon in october, biggest hackathon in india, biggest hackathon in delhi, MLH, Major League Hacking, Asia's first mlh member hackathon, national hackathon, Hackathon, DU Hackathon, Hackathon in Delhi, Techfest,hackathon meaning, hackathon 2020, hackathon meaning in hindi, hackathon ideas, hackathon in india, hackathon team names, hackathon meaning in english, hackathon examples, hackathon advantages, hackathon analytics vidhya, hackathon app, hackathon awards, hackathon app ideas, hackathon august 2020, hackathon atmanirbhar bharat, hackathon app development, a hackathon is, a hackathon like, a hackathon for good, organizing a hackathon, running a hackathon, how a hackathon works, judging a hackathon, winning a hackathon, hackathon background, hackathon by google, hackathon benefits, hackathon by indian government, hackathon background images, hackathon bangalore, hackathon banner, hackathon brochure, b-hive fintech hackathon, b nest bhopal hackathon, hackathon competition, hackathon challenges examples, hackathon captions, hackathon certificate, hackathon covid, hackathon coding questions, hackathon course, hackathon company,hacking, startups, hackday, hackathon meaning, what is a hackathon, hackathon ideas, coding challenge, facebook hackathon, offline hackathon, hackathon project ideas, hacking hacking, hackathon bangalore, hackathon examples, hackathon means, hackathon projects, startup weekend, coding hackathon, upcoming hackathons, hackerspaces, smart hackathon, hackathon meaning in tamil, google hackathon, hack day, hackathon logo, hackathon for beginners, angelhack, microsoft hackathons, iot hackathon, startup leadership program, hackatons, hackathons near me, makeathon, hackathon website, virtual hackathon, hackathon names, hackathon competition, hackathon events, codefest, coding events, hacker challenge, code hackathon, hackathon topics, hackfest, hackathon problems, corporate hackathon ideas, hackathon registration, global hackathon, hackathon sponsors, what's a hackathon, hackathon challenges, project ideas for hackathon, international hackathons, hackathon innovation, women hackathon, how to participate in hackathon, best hackathons, hacking events, what happens at a hackathon, hackathon platform, hackathon software, hackathon data, hackathon games, hackathon program, hackathon event names, what is the meaning of hackathon, best hackathon projects, hackathon organizers, company hackathon, business hackathon, hackathon definition, hackathon challenge ideas, student hackathons, define hackathon, hackathon website template, hackathon registration form, upcoming hackathons in delhi, about hackathon, what is hackathon event, hackathon prizes, hackathon app, hackathon project ideas for beginners, harvard hackathon, hackathon video, hackathon contest, how do hackathons work, how to conduct a hackathon, hackathon sample problems, hackathon results, hackathon means in hindi, hackathons 2017, hackathon planning, organising a hackathon, hackathon team, corporate hackathon, best hackathons in the world, tech hackathon, 24 hour hackathon, hackathon wiki, social hackathon, hackathon list, hackathon rules and regulations, hackathon wikipedia, college hackathons, javascript hackathon, hackathon programming questions, types of hackathons, developer meetup, hackathon 2016, good hackathon ideas, startup hackathon, hackathon paris, find hackathons, summer hackathons, hackathon website ideas, mobile hackathon, 2016 hackathon, local hackathons, hackathon london, cool hackathon projects, the hackathon, global hackathon 2016, hackathon prize ideas, hackathon day, hackathon bay area, hackathon nyc, hackathon 2014, hosting a hackathon, hackathon ideas 2016, best hackathon prizes, microsoft hackathon 2016, it hackathon, hackathon définition, top hackathons, hackathon ideas for web, hackathon san francisco, largest hackathon, good hackathon projects, company hackathon ideas, what to expect at a hackathon, programming hackathon, disrupt hackathon, microsoft hackathon 2017, how to host a hackathon, hackathon bangalore 2016, how to run a hackathon, hackathon 2015, wat is een hackathon, smart hackathon 2017, hackathon agenda, techcrunch hackathon, techcrunch disrupt hackathon, non technical hackathon, hackathon schedule, civic hacking, hackathon tools, hackathon usa, hackathon calendar, new york hackathon, princeton hackathon, open data hackathon, running a hackathon, weekend hackathon, google hackathon 2016, hackathon europe, offline hackathon contest, hackathon application, high school hackathon, best apis for hackathons, first hackathon, 2017 hackathons, hackathon workshop, hackathon format, how to do a hackathon, developer week hackathon, upcoming hackathons bay area, hackathon california, hackathon 17, how to start a hackathon, hackathon awards, hackathon project examples, companies that sponsor hackathons, developer hackathon, hackathons in canada, how does a hackathon work, hackathon winners 2016, what is a hackathon like, hackathon structure, hackathon agenda template, 2017 hackathon, hackathon prize categories, hackathon concept, hackathon participants, hackathons canada, yahoo hackathon, hackathon finder, cool hackathon names, biggest hackathons, hack marathon, hackathon description, university hackathons, hackathon projects for beginners, facebook hackathon winners, google hackathon winners, what is a hack day, hackathon princeton, hackathons coming up, google hackathon 2015, what do you do at a hackathon, famous hackathons, start hackathon, facebook global hackathon, hack weekend, why do a hackathon, edu hackathon, what is hack day, what to do at a hackathon, c hackathon questions, hackathon c programming, embedded c hackathon, hackathon c'est quoi, le hackathon c'est quoi, c quoi un hackathon, hackathon data science, hackathon drug discovery, hackathon definition, hackathon data science 2020, hackathon design, hackathon details, hackathon devpost, hackathon dates, er&d hackathon, d'youville hackathon, d&i hackathon, l&d hackathon, d'youville healthcare hackathon, d-fine hackathon, hackathon d'entreprise, hackathon d.velop, hackathon events, hackathon experience, hackathon event names, hackathon eligibility, hackathon experience blog, hackathon events in india, hackathon events 2020, e.hackathon //http, e^hackathon london, e^hackathon seattle, e-hackathon tata, e-hackathon falabella, e zest hackathon 2019, e-commerce hackathon, e commerce hackathon ideas, hackathon for beginners, hackathon for data science, hackathon for covid, hackathon for web developers, hackathon for school students, hackathon for mechanical engineering, hackathon for students, hackathon for jobs, cmd-f hackathon, hackathon github, hackathon group names, hackathon google, hackathon game, hackathon government of india, hackathon guidelines, hackathon guide, hackathon great learning, hackathon g.tec, p&g hackathon, 5g hackathon, hackathon hackerearth, hackathon hackerrank, hackathon hindi, hackathon hiring, hackathon hcl, hackathon hackers, hackathon healthcare, hackathon hashtags, hackathon h farm, ae.hackathon //h, hackathon ideas for covid, hackathon images, hackathon ideas for beginners, hackathon ideas for healthcare, hackathon iitk, hackathon in hindi, i hate hackathons, i-com hackathon 2019, i stem hackathon, i don't like hackathons, u of i hackathon, i-hns hackathon, hackathon java, hackathon judging criteria, hackathon jobs, hackathon java questions, hackathon javascript, hackathon july 2020, hackathon job interview, hackathon java projects, j hub hackathon, j p morgan hackathon, pilot flying j hackathon, hackathon kya hai, hackathon kaggle, hackathon kerala police, hackathon kya hota hai, hackathon kerala 2020, hackathon kenya, hackathon kickoff, hackathon kfas, k-hackathon, k state hackathon, k j somaiya hackathon, hackathon login, hackathon logo, hackathon launched by, hackathon live, hackathon list, hackathon learning, hackathon live stream, hackathon linkedin, l&t hackathon, l&t finance hackathon, hackathon l'oreal, definition de l hackathon, hackathon machine learning, hackathon microsoft, hackathon mit, hackathon machine learning projects, hackathon mhrd, m+ hackathon, texas a&m hackathon, u of m hackathon, hackathon names, hackathon near me, hackathon delhi, hackathon news, hackathon name generator, hackathon near me 2020, hackathon narendra modi, hackathon now, hackathon offline, hackathon objectives, hackathon offline courses, hackathon organizers in india, hackathon on data science, hackathon offine test, hackathon on covid, hackathon on machine learning, o que significa hackathon em portugues, hackathon o que é, hackathon o hackathon, hackathon o q é, o que significa hackathon, o que é hackathon de carreiras, o que são hackathons, como funciona o hackathon, hackathon project ideas, hackathon problem statements, hackathon poster, hackathon project ideas 2020, hackathon python, hackathon pronunciation, hackathon proposal template, hackathon platform, p que significa hackathon, hackathon p que e, hackathon questions, hackathon quotes, hackathon quora, hackathon questions and answers, hackathon questions in java, hackathon questions in python, hackathon quiz, hackathon questions in c, hackathon q&a, hackathon q es, hackathon q significa, que es un hackathon, hackathon registration, hackathon registration form, hackathon rules, hackathon requirements, hackathon rules and regulations, hackathon rank, hackathon report, hackathon recruitment process, hackathon r programming, r u ready hackathon, r cheewa hackathon, hackathon synonym, hackathon scope, hackathon solutions, hackathon sites, hackathon smart india, hackathon sample problems, hackathon starter, hackathon slogans, what's a hackathon, hackathon topics, hackathon tips and tricks, hackathon themes, hackathon tcs, hackathon team names generator, hackathon taglines, hackathon team names reddit, hackathon t shirt, hackathon t shirt design, hackathon t com, at&t hackathon 2019, t mobile hackathon, at&t hackathon indianapolis, at&t hackathon 2020, hackathon upsc, hackathon upcoming, hackathon use cases, hackathon updates, hackathon us, hackathon uses, hackathon uipath, hackathon under 18, hackathon u of t, hackathon u of m, hackathon u of arkansas, hackathon uiowa, ottawa u hackathon, uwaterloo hackathon, u buffalo hackathon, u of toronto hackathon, hackathon video, hackathon vs competitive programming, hackathon video template, hackathon vs ideathon, hackathon vit, hackathon vaccine, hackathon virtual 2020, hackathon vancouver, hackathon v cesku, hackathonu v prahe, cypher v hackathon, v-ignite hackathon, hackathon website, hackathon whitehat, hackathon winners, hackathon winning ideas, hackathon website template, hackathon winners 2020, hackathon wikipedia, hackathon winner certificate, acm-w hackathon 2019, hackathony w polsce, hackathon xsoar, hackathon xp, hackathon xp investimentos, hackathon xamk, xr hackathon, xkcd hackathon, spring hackathon, xoriant hackathon, junctionx hackathon, hackathon x, hackathon youtube, hackathon yulu, hackathon yale, hackathon york university, hackathon yerevan, hackathon yonder, hackathon yoga, yc hackathon, y combinator hackathon, y combinator hackathon 2019, hackathon zürich, hackathon zimbabwe, hackathon zenvia, hackathon značenje, hackathon zagreb 2020, hackathon zenica, hackathon znamka, hackathon za cisto sarajevo, 0x hackathon, 01 hackathon, hackathon 101, hackathon 19, hackathon 1.0, hackathon 1st place, 10x10 hackathon, hackathon pintar 1.0, ietf hackathon 106, ietf hackathon 105, 1 day hackathon ideas, 1 hour hackathon, 1 day hackathon, 1 week hackathon, delta 1 hackathon, hackathon 2019, hackathon 2020 india, hackathon 2020 winners, hackathon 2021, hackathon 2018, hackathon 2020 ideas, hackathon 2019 winner, 2 hackathon escoteiro, hackathon 2, icesat 2 hackathon, 2 hour hackathon, payday 2 hackathon, hackathon 2 dfb, hackathon 3.0, hackathon 3d print, hackathon 3d printing, hackathon 3dexperience, 3m hackathon, 3d hackathon dublin, 3157 hackathon, 3d hackathon, hackathon 3, 3 minute hackathon presentation, sly 3 hackathon, 3 day hackathon, 3 address code hackathon, tesla model 3 hackathon, hackathon 4 justice, hackathon 4.0, hackathon 4good, hackathon 48 hours, hackathon 42, 43north hackathon, 48in48 hackathon, hackathon sims 4, sims 4 hackathon, hackathon 59, hackathon 5g, 5g hackathon upsc, 5g hackathon results, 5c hackathon, 5g hackathon in hindi, 5g hackathon meaning, 5g hackathon winners, 5g hackathon registration form, 5g hackathon oulu, 5g hackathon riga, rajasthan hackathon 6.0, nanog 78 hackathon, hackathon habitat 76, hackathon 77, hackathon java 8, hackathon 92" />
<meta name="author" content=hackCBS />
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon-32x32.png" />
<link rel=icon type="image/x-icon" href="assets/img/logo_final.png" />
<link rel=manifest href="assets/img/favicon/manifest.html">
<link rel=stylesheet href="assets/libs/bootstrap/css/bootstrap.min.css" media=all />
<!-- <link rel=stylesheet href="assets/libs/fontawesome/css/font-awesome.min.css" media=all /> -->
<!-- Font Awesome Icons -->
<script src="https://kit.fontawesome.com/8f4546bba1.js" crossorigin="anonymous"></script>
<link id=lgx-master-style rel=stylesheet href="assets/css/style-default-v5.min.css" media=all />
<link rel='stylesheet' href="assets/css/font-v5.css" media=all>
<link rel='stylesheet' href="assets/css/slider.css" media=all>
<link rel='stylesheet' href="assets/css/HemiHead-v5/style.css" media=all>
<link rel="stylesheet" href="assets/css/style-v5.css" media=all>
<link rel="stylesheet" href="assets/css/prizes-v5.css" media=all>
<link rel="stylesheet" href="assets/css/normalize-v5.min.css">
<link rel="stylesheet" href="assets/libs/aos/aos.css">
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script>
<script src="assets/js/vendor/modernizr-2.8.3.min.js"></script>
<script src="assets/js/glimpses.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120130047-4"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous">
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-120130047-4');
</script>
</head>
<body class=home>
<!--[if lt IE 8]><p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]-->
<div class="progress-bar progress"></div>
<div class="lgx-container ">
<header>
<div id=lgx-header class=lgx-header>
<div class="lgx-header-position lgx-header-position-white lgx-header-position-fixed ">
<div class=lgx-container-fluid>
<nav class="navbar navbar-default lgx-navbar">
<div class=navbar-header> <button type=button class="navbar-toggle collapsed"
data-toggle=collapse data-target="#navbar" aria-expanded=false aria-controls=navbar>
<span class=sr-only>Toggle navigation</span> <span class=icon-bar></span> <span
class=icon-bar></span> <span class=icon-bar></span> </button>
<div class=lgx-logo>
<a href="#home-section" class=lgx-scroll>
<!-- <img src="assets/img/logo5.0-new.png" id="top-logo-img" alt="hackCBS Logo" />
-->
<img src="./assets/img/8.0_assets/hackCBS8.0_logo_coloured.png" id="top-logo-img" alt="hackCBS Logo" />
</a>
</div>
</div>
<div id=navbar class="navbar-collapse collapse lgx-3">
<ul class="nav navbar-nav mr-auto lgx-nav mt-3">
<li class="nav-item"><a class=lgx-scroll href="#about">About</a></li>
<!-- <li><a class=lgx-scroll href="#workshops">Workshops</a></li> -->
<li class="nav-item"><a class=lgx-scroll href="#themes">Themes</a></li>
<li class="nav-item"><a class=lgx-scroll href="#prizes">Prizes</a></li>
<li class="nav-item"><a class=lgx-scroll href="#schedule">Schedule</a></li>
<li class="nav-item"><a class=lgx-scroll href="#sponsors">Sponsors</a></li>
<li class="nav-item"><a class=lgx-scroll href="#teams">Team</a></li>
<li class="nav-item"><a class=lgx-scroll href="#faq">FAQ'<span
class="text-lowercase">s</span></a></li>
<li class="nav-item"><a class=lgx-scroll href="#contact">Contact</a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</header>
<section class="banner-parallax">
<div class="video-container">
<video autoplay muted loop id="background-video">
<source src="assets/videos/pirate_back.mov" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="home_container" id="home-section">
<div class="home_date-container">
<div class="banner-video-overlay" style="margin-top: 3rem;">
<img src="assets/img/8.0_assets/hackCBS8.0.png" class="hackcbs_landing">
</div>
<div class="home_main-text">
<div class="home_hackCBS">
</div>
</div>
<div style="text-align:center;">
<script src="https://cdn.lordicon.com/xdjxvujz.js"></script>
<div style="display: flex; width: 100%; justify-content: center; font-size: 80px;">
<span class="clr-white date landing-date">8th - 9th November 2025</span>
</div>
<!-- <img src="assets/img/new_assets/date_new.png" alt="9th-10th November"> -->
</div>
</div>
<div class="home_button-container">
<!-- <a target="_blank" href="https://hackcbs-7.devfolio.co/"> -->
<a target="_blank" href="https://docs.google.com/forms/d/e/1FAIpQLSe0idpYEXLVESZYOiKf5DdALxOc_XrtPCQ4ipLMPW2c-d6bow/viewform?usp=sharing&ouid=114161617178980203312">
<button class="button-register banner-button-style">
<i class="fa-solid fa-up-right-from-square"></i> Interest Form</button>
</a>
<a href="https://discord.gg/AfVYrSemzB" target="_blank">
<button class="button-discord banner-button-style">
<i class="fa-brands fa-discord"></i> Discord Server
</button>
</a>
</div>
</div>
</section>
<div class="hidden-sm hidden-xs"> </div>
<div class=" hidden-xl">
<a id="mlh-trust-badge"
style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000"
href="https://mlh.io/apac?utm_source=apac-hackathon&utm_medium=TrustBadge&utm_campaign=2025-season&utm_content=red"
target="_blank"><img
src="https://s3.amazonaws.com/logged-assets/trust-badge/2026/mlh-trust-badge-2026-red.svg"
alt="Major League Hacking 2025 Hackathon Season" style="width:100%"></a>
</div>
<section class="pb100 pt100" id="about">
<div class="about-container container">
<div class="row">
<!-- Text Section -->
<div class="col-lg-7" data-aos="fade-right" data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<div class="section_title">
<h3 class="title-dark">About the event</h3>
</div>
<div id="about-div">
<p>Embarking on the next chapter of an exhilarating legacy, we present <b>hackCBS 8.0</b>! This ultimate blend of coders, innovators, designers, and tech-connoisseurs is a celebration of expertise and creativity that promises an unparalleled experience.Get ready to embark on an exciting journey, overcoming challenges with innovative solutions! </p><br>
<p>The event is a mega-fest of hackers racing against time for intensive development. This edition promises to redefine the boundaries of what is possible in hacking, where grandeur meets innovation.</p>
<br />
<p><b>Venue</b>[In-Person] - Shaheed Sukhdev College of Business Studies</p>
<p><b>Dates</b> - 8-9 November 2025</p>
</div>
</div>
<!-- Ship Image Section -->
<div class="col-lg-5 text-center" data-aos="fade-left" data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<img src="assets/img/new_assets/ship.png" alt="Event Ship Image" class="img-fluid medium-ship">
</div>
</div>
<!-- Stats Section -->
<div class="container stat_icons">
<div class="row clr-dark">
<div class="col-lg-2 col-xs-4 stats">
<lord-icon part="box" class="regs" src="https://cdn.lordicon.com/dxjqoygy.json"
trigger="loop" colors="primary:#45b6b6,secondary:#45b6b6"></lord-icon>
<div class="counting" data-count="15873">0</div>
<h5 class="clr-dark">Registrations</h5>
</div>
<div class="col-lg-2 col-xs-4 stats">
<lord-icon part="box" class="hacker" src="https://cdn.lordicon.com/nobciafz.json"
trigger="loop" colors="primary:#45b6b6,secondary:#45b6b6"></lord-icon>
<div class="counting" data-count="4479">0</div>
<h5 class="clr-dark">Attendees</h5>
</div>
<div class="col-lg-2 col-xs-4 stats">
<lord-icon part="box" class="college" src="https://cdn.lordicon.com/jjjmlddk.json"
trigger="loop" colors="primary:#45b6b6,secondary:#45b6b6"></lord-icon>
<div class="counting" data-count="718">0</div>
<h5 class="clr-dark">Colleges</h5>
</div>
<div class="col-lg-2 col-xs-4 stats">
<lord-icon src="https://cdn.lordicon.com/zzcjjxew.json" trigger="loop"
colors="primary:#45b6b6,secondary:#45b6b6"></lord-icon>
<div class="counting" data-count="440">0</div>
<h5 class="clr-dark">Cities</h5>
</div>
<div class="col-lg-2 col-xs-4 stats">
<lord-icon part="box" class="country" src="https://cdn.lordicon.com/gqzfzudq.json"
trigger="loop" colors="primary:#45b6b6,secondary:#45b6b6"></lord-icon>
<div class="counting" data-count="25">0</div>
<h5 class="clr-dark">Countries</h5>
</div>
<div class="col-lg-2 col-xs-4 stats">
<lord-icon src="https://cdn.lordicon.com/tdxypxgp.json" trigger="loop"
colors="primary:#45b6b6,secondary:#45b6b6"></lord-icon>
<div class="counting" data-count="24500">0</div>
<h5 class="clr-dark">YouTube Views</h5>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<!-- <section id="es-new">
<div class="glimpses-new-container">
<div class="container">
<div class="section_title">
<h3 class="title-dark" data-aos="fade-right" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom">
Glimpses <span class="text-lowercase">of hack</span>CBS <br>
<span class="previous_ed text-capitalize">Previous Editions</span>
</h3>
</div>
</div>
<div class="new-scroll-container">
<div class="new-carousel-primary">
<img src="assets/img/glimpses/1-min.jpg" alt="img1" />
<img src="assets/img/glimpses/2-min.jpg" alt="img2" />
<img src="assets/img/glimpses/3-min.jpg" alt="img3" />
<img src="assets/img/glimpses/10-min.jpg" alt="img4" />
<img src="assets/img/glimpses/5-min.jpg" alt="img5" />
<img src="assets/img/glimpses/hackcbsph.jpg" alt="img6" />
<img src="assets/img/glimpses/7-min.jpg" alt="img7" />
<img src="assets/img/glimpses/1-min.jpg" alt="img1" />
<img src="assets/img/glimpses/2-min.jpg" alt="img2" />
<img src="assets/img/glimpses/3-min.jpg" alt="img3" />
<img src="assets/img/glimpses/10-min.jpg" alt="img4" />
<img src="assets/img/glimpses/5-min.jpg" alt="img5" />
<img src="assets/img/glimpses/hackcbsph.jpg" alt="img6" />
<img src="assets/img/glimpses/7-min.jpg" alt="img7" />
</div>
<div class="new-carousel-secondary">
<img src="assets/img/glimpses/8-min.jpg" alt="img8" />
<img src="assets/img/glimpses/9-min.jpg" alt="img9" />
<img src="assets/img/glimpses/4-min.jpg" alt="img10" />
<img src="assets/img/glimpses/11-min.jpeg" alt="img11" />
<img src="assets/img/glimpses/hackcbs3ph.jpeg" alt="img12" />
<img src="assets/img/glimpses/14-min.jpg" alt="img13" />
<img src="assets/img/glimpses/SCR-20240930-tkpz.jpeg" alt="img14" />
<img src="assets/img/glimpses/8-min.jpg" alt="img8" />
<img src="assets/img/glimpses/9-min.jpg" alt="img9" />
<img src="assets/img/glimpses/4-min.jpg" alt="img10" />
<img src="assets/img/glimpses/11-min.jpeg" alt="img11" />
<img src="assets/img/glimpses/hackcbs3ph.jpeg" alt="img12" />
<img src="assets/img/glimpses/14-min.jpg" alt="img13" />
<img src="assets/img/glimpses/SCR-20240930-tkpz.jpeg" alt="img14" />
</div>
</div>
</div>
</section> -->
<section id="glimpses-new">
<div class="glimpses-new-container">
<div class="container">
<div class="section_title">
<h3 class="title-dark" data-aos="fade-right" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom">
Glimpses <span class="text-lowercase">of hack</span>CBS <br>
<span class="previous_ed text-capitalize">Previous Editions</span>
</h3>
</div>
</div>
<div class="new-scroll-container">
<div class="new-carousel-primary">
<img src="assets/img/glimpses/1-min.jpg" alt="img1" />
<img src="assets/img/glimpses/2-min.jpg" alt="img2" />
<img src="assets/img/glimpses/3-min.jpg" alt="img3" />
<img src="assets/img/glimpses/10-min.jpg" alt="img4" />
<img src="assets/img/glimpses/5-min.jpg" alt="img5" />
<img src="assets/img/glimpses/hackcbsph.jpg" alt="img6" />
<img src="assets/img/glimpses/7-min.jpg" alt="img7" />
<img src="assets/img/glimpses/1-min.jpg" alt="img1" />
<img src="assets/img/glimpses/2-min.jpg" alt="img2" />
<img src="assets/img/glimpses/3-min.jpg" alt="img3" />
<img src="assets/img/glimpses/10-min.jpg" alt="img4" />
<img src="assets/img/glimpses/5-min.jpg" alt="img5" />
<img src="assets/img/glimpses/hackcbsph.jpg" alt="img6" />
<img src="assets/img/glimpses/7-min.jpg" alt="img7" />
</div>
<div class="new-carousel-secondary">
<img src="assets/img/glimpses/8-min.jpg" alt="img8" />
<img src="assets/img/glimpses/9-min.jpg" alt="img9" />
<img src="assets/img/glimpses/4-min.jpg" alt="img10" />
<img src="assets/img/glimpses/11-min.jpeg" alt="img11" />
<img src="assets/img/glimpses/hackcbs3ph.jpeg" alt="img12" />
<img src="assets/img/glimpses/14-min.jpg" alt="img13" />
<img src="assets/img/glimpses/SCR-20240930-tkpz.jpeg" alt="img14" />
<img src="assets/img/glimpses/8-min.jpg" alt="img8" />
<img src="assets/img/glimpses/9-min.jpg" alt="img9" />
<img src="assets/img/glimpses/4-min.jpg" alt="img10" />
<img src="assets/img/glimpses/11-min.jpeg" alt="img11" />
<img src="assets/img/glimpses/hackcbs3ph.jpeg" alt="img12" />
<img src="assets/img/glimpses/14-min.jpg" alt="img13" />
<img src="assets/img/glimpses/SCR-20240930-tkpz.jpeg" alt="img14" />
</div>
</div>
</div>
</section>
<section id=themes class="">
<div class="themes-bg">
<div class="themes-bg-cover pt100 pb100">
<div class=container>
<div class="section_title">
<h3 class="title-dark" data-aos="fade-right" data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
Hackathon Themes
</h3>
</div>
</div>
<div class="container">
<div class=row>
<div class=lgx-gallery-area>
<div class="col-md-3 col-xs-6 col-sm-6" style="padding: 0px" data-aos="zoom-in-up"
data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<div class=lgx-gallery-single>
<figure> <img src="assets/img/themes_new/Cloud.svg" alt=Cloud loading=lazy>
<figcaption class=lgx-figcaption>
<div class=lgx-hover-link>
<div class=lgx-vertical>
<p class=theme-input>Cloud</p>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="col-md-3 col-xs-6 col-sm-6" style="padding: 0px" data-aos="zoom-in-up"
data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<div class=lgx-gallery-single>
<figure> <img src="assets/img/themes_new/EdTech.svg" alt=EdTech loading=lazy>
<figcaption class=figcaption>
<div class=lgx-hover-link>
<div class=lgx-vertical>
<p class=theme-input>EdTech</p>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="col-md-3 col-xs-6 col-sm-6" style="padding: 0px" data-aos="zoom-in-up"
data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<div class=lgx-gallery-single>
<figure> <img src="assets/img/themes_new/AI.svg" alt=AI loading=lazy>
<figcaption class=lgx-figcaption>
<div class=lgx-hover-link>
<div class=lgx-vertical>
<p class=theme-input>Artificial<br>Intelligence</p>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="col-md-3 col-xs-6 col-sm-6" style="padding: 0px" data-aos="zoom-in-up"
data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<div class=lgx-gallery-single>
<figure> <img src="assets/img/themes_new/Fintech.svg" alt=Productivity
loading=lazy>
<figcaption class=lgx-figcaption>
<div class=lgx-hover-link>
<div class=lgx-vertical>
<p class=theme-input>FinTech</p>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="col-md-3 col-xs-6 col-sm-6" style="padding: 0px" data-aos="zoom-in-up"
data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<div class=lgx-gallery-single>
<figure> <img src="assets/img/themes_new/IOT.svg" alt="IOT" loading=lazy>
<figcaption class=lgx-figcaption>
<div class=lgx-hover-link>
<div class=lgx-vertical>
<p class=theme-input>IOT</p>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="col-md-3 col-xs-6 col-sm-6" style="padding: 0px" data-aos="zoom-in-up"
data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<div class=lgx-gallery-single>
<figure> <img src="assets/img/themes_new/Health Care.svg" alt="Health Care" loading=lazy>
<figcaption class=lgx-figcaption>
<div class=lgx-hover-link>
<div class=lgx-vertical>
<p class=theme-input>Health Tech</p>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="col-md-3 col-xs-6 col-sm-6" style="padding: 0px;" data-aos="zoom-in-up"
data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<div class=lgx-gallery-single>
<figure> <img src="assets/img/themes_new/OpenInnovation.svg" alt="Open Innovation"
loading=lazy>
<figcaption class=lgx-figcaption>
<div class=lgx-hover-link>
<div class=lgx-vertical>
<p class=theme-input>Open<br>Innovation</p>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="col-md-3 col-xs-6 col-sm-6" style="padding: 0px" data-aos="zoom-in-up"
data-aos-duration="1000" data-aos-anchor-placement="top-bottom">
<div class=lgx-gallery-single>
<figure> <img src="assets/img/themes_new/web.svg" alt="Web3" loading=lazy>
<figcaption class=lgx-figcaption>
<div class=lgx-hover-link>
<div class=lgx-vertical>
<p class=theme-input>Web3</p>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div id="ps" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body"> <button type="button" class="close"
data-dismiss="modal">×</button> <br>
<h5 class="modal-title">Sample Problem Statements</h5> <br>
<p><b>There are no problem statments for hackCBS 6.0. </b> <br>These are
some
sample problem statements from which you can take reference. You can
work on
any problem statement of your choice.</p> <br>
</div>
<div class="modal-footer"> <a href="assets/docs/Sample-Problem-Statements.pdf"
target="_blank"> <button type="button"
class="btn btn-primary">Download</button> </a> <button type="button"
class="btn btn-default" data-dismiss="modal">Close</button></div>
</div>
</div>
</div>
</div>
</center>
</div>
</div>
</section>
<!-- <section id=registration>
<div id=lgx-registration class=lgx-registration>
<div class="lgx-inner lgx-reg-inner">
<div class=container>
<div class=row>
<div class=col-xs-12>
<div class="lgx-registration-area lgx-registration-area2">
<div class="lgx-single-registration recommended">
<div class=lgx-single-registration-inner>
<script src="https://cdn.lordicon.com/xdjxvujz.js"></script>
<lord-icon src="https://cdn.lordicon.com/fqrjldna.json" trigger="loop" colors="primary:#3d4c6d,secondary:#b063c8" scale="70" style="width:150px;height:150px">
</lord-icon>
<br>
<div class=single-top>
<h3 class=title>REGISTER FOR HACKATHON</h3>
</div>
<div class=single-bottom>
<ul class="list-unstyled list">
<li>No Entry Fees</li>
<li>24-Hour Offline Hackathon</li>
<li>Cash Prizes upto <b>1 Lakh</b></li>
<li>SWAGs and Credits of worth <b>$60,000</b></li>
<li>Get Startup Grants up to <b>$25,000</b></li>
<li>Networking and Q/A sessions with Mentors</li>
<li>Certificate of Participation</li>
<li>Free Meals & Refreshments</li>
<br/>
<li>
<li><small>You're advised to bring your own broadband/hotspot device as we can arrange for atmost one connection per team.</small></li>
</li>
</ul> <a href="https://hack2skill.com/hack/hackcbs" target="_blank" class="lgx-btn"><span>Register Now</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section id="prizes" class="pb100 pt100">
<div class=container>
<div class="section_title">
<h3 class="title-dark" data-aos="fade-right" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom">
LAST EDITION'S PRIZES
</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4 prize-card" data-aos="fade-up" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom">
<div class="main">
<div class="service">
<div class="service-logo first-logo"> <img src="assets/img/first.png" alt="1st"></div>
<h4 class="prize-heading">First Prize</h4>
<p> Total Prize of Worth <b>$15,000</b></p>
<p> Cash Prize of <b>INR 45,000</b></p>
<div class="prizes-btn" style="margin-top: 15px;"><button class="cta" data-toggle="modal"
data-target="#prize1_modal">
<span class="hover-underline-animation"> Know more </span>
</button></div>
</div>
<div class="shadowOne"></div>
<div class="shadowTwo"></div>
</div>
</div>
<div class="col-md-4 prize-card" data-aos="fade-up" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom">
<div class="main">
<div class="service">
<div class="service-logo second-logo"> <img src="assets/img/second.png" alt="2nd"></div>
<h4 class="prize-heading">Second Prize</h4>
<p> Total Prize of Worth <b>$12,500</b></p>
<p> Cash Prize of <b>INR 35,000</b></p>
<div class="prizes-btn" style="margin-top: 15px;"> <button class="cta" data-toggle="modal"
data-target="#prize2_modal">
<span class="hover-underline-animation"> Know more </span>
</button></div>
</div>
<div class="shadowOne"></div>
<div class="shadowTwo"></div>
</div>
</div>
<div class="col-md-4 order-md-12 prize-card" data-aos="fade-up" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom">
<div class="main">
<div class="service">
<div class="service-logo third-logo"> <img src="assets/img/third.png" alt="3rd"></div>
<h4 class="prize-heading">Third Prize</h4>
<p> Total Prize of Worth <b>$10,000</b></p>
<p> Cash Prize of <b>INR 25,000</b></p>
<div class="prizes-btn" style="margin-top: 15px;"> <button class="cta" data-toggle="modal"
data-target="#prize3_modal">
<span class="hover-underline-animation"> Know more </span>
</button>
</div>
</div>
<div class="shadowOne"></div>
<div class="shadowTwo"></div>
</div>
</div>
<div class="modal fade" id="prize1_modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header prize-modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">First Prize</h5>
</div>
<div class="modal-body prize-modal-body">
<ul style="color: #040709;">
<li><span class="important">Redragon mechanical keyboards for all members</span></li>
<li><span class="important">2-year VIP CodeCrafters membership</span></li>
<li><span class="important">Axure RP license</span></li>
<li><span class="important">Voiceflow: 3 months + add 2 million additional tokens
</span></li>
<li><span class="important">Unlimited one-way mock interviews from InterviewBuddy</span></li>
<li><span class="important">Premium Flatlogic generator</span></li>
<li><span class="important">1-month Voiceflow Pro license worth $50</span></li>
<li><span class="important">1-year free hosting on .xyz domain
</span></li>
<li><span class="important">Free Access Mistral.ai credits worth $1000
</span></li>
<!-- <li><span class="important">Free access to Echo3D pro plan</span></li>
<li><span class="important">5-year upgrade plan to Taskade premium</span></li>
<li><span class="important">Unlimited One-way mock interviews from
InterviewBuddy</span></li> -->
</ul>
</div>
</div>
</div>
</div>
<div class="modal fade" id="prize2_modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header prize-modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Second Prize</h5>
</div>
<div class="modal-body prize-modal-body">
<ul style="color: #040709;">
<li><span class="important">1-year VIP CodeCrafters membership</span></li>
<li><span class="important">Axure RP license
</span></li>
<li><span class="important">Unlimited one-way mock interviews from InterviewBuddy</span></li>
<li><span class="important">Premium Flatlogic generator</span></li>
<li><span class="important">1-month Voiceflow Pro license worth $50
</span></li>
<li><span class="important">1-year free hosting on .xyz domain
</span></li>
<li><span class="important">Free access to Mistral.ai credits worth $1000
</span></li>
<!-- <li><span class="important">Free access to Echo3D pro plan</span></li>
<li><span class="important">5-year upgrade plan to Taskade premium</span></li>
<li><span class="important">Unlimited One-way mock interviews from
InterviewBuddy</span></li> -->
</ul>
</div>
</div>
</div>
</div>
<div class="modal fade" id="prize3_modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header prize-modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Third Prize</h5>
</div>
<div class="modal-body prize-modal-body">
<ul style="color: #040709;">
<li><span class="important">Axure RP license</span></li>
<li><span class="important">Unlimited one-way mock interviews from InterviewBuddy</span></li>
<li><span class="important">Premium - Flatlogic Generator</span></li>
<li><span class="important">1-month Voiceflow Pro license worth $50</span></li>
<li><span class="important">1-year free hosting on .xyz domain
</span></li>
<li><span class="important">Free access to Mistral.ai credits worth $1000</span></li>
</ul>
</div>
</div>
</div>
</div>
<!-- ************ Hack ROW ************** -->
<div class="row justify-content-center">
<div class="col-md-2 order-md-12" data-aos="fade-up" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom"></div>
<div class="col-md-4 order-md-12 prize-card hack-card" data-aos="fade-up" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom">
<div class="main">
<div class="service">
<div class="service-logo best-hack-logo"> <img src="assets/img/sponsors/6.0/ai-brain.png"
alt="5th"></div>
<h4 class="hack-prize-heading" style="line-height: 1em;">Best GenAI<br />Project
</h4>
<p> Cash Prize of <b>INR 10,000</b></p>
<span class="hover-underline-animation" > + Swags and Goodies </span>
<!-- <div class="prizes-btn" style="margin-top: 15px;"> <button class="btn-info"
data-toggle="modal" data-target="#prize3_modal" style="background: #FC5FB0;">Know
More</button></div> -->
</div>
<div class="hack-shadowOne"></div>
<div class="hack-shadowTwo"></div>
</div>
</div>
<div class="col-md-4 order-md-12 prize-card hack-card" data-aos="fade-up" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom">
<div class="main">
<div class="service">
<div class="service-logo best-hack-logo"> <img src="assets/img/sponsors/6.0/girl.png"
alt="6th"></div>
<h4 class="hack-prize-heading" style="line-height: 1em;">Best Girls Team<br />
</h4>
<p> Cash Prize of <b>INR 5,000</b></p>
<span class="hover-underline-animation" > + Swags and Goodies </span>
<!-- <div class="prizes-btn" style="margin-top: 15px;"> <button class="btn-info"
data-toggle="modal" data-target="#prize3_modal" style="background: #FC5FB0;">Know
More</button></div> -->
</div>
<div class="hack-shadowOne"></div>
<div class="hack-shadowTwo"></div>
</div>
</div>
<div class="col-md-2 order-md-12" data-aos="fade-up" data-aos-duration="1000"
data-aos-anchor-placement="top-bottom"></div>
</div>
</div>
<!--
<div class="col-md-6 order-md-12 aos-init aos-animate" data-aos="fade-up"
data-aos-anchor-placement="top-bottom" data-aos-duration="1000">
<div class="mainMLH">
<div class="service">
<div class="service-logo mlh-logo"><img src="assets/img/custom-deso.png" alt="mlh"></div>
<h5 class="prize-heading" style="font-size:20px"><b>Best Use of DeSo</b></h5>
<p>Prize: <b>$100 worth of $DESO coin, an exclusive DeSo Tumbler, and a YubiKey!</b></p>
<div class="prizes-btn" style="margin-top:15px"><button class="cta"
data-target="#mlhprize5_modal-1" data-toggle="modal">
<span class="hover-underline-animation"> Know more </span>
</button></div>
</div>
<div class="shadowOneMLH"></div>
<div class="shadowTwoMLH"></div>
</div>
</div>
<div class="modal fade" id="mlhprize5_modal-1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header prize-modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Use of DeSo</h5>
</div>
<div class="modal-body prize-modal-body">
<p><b>DeSo is the official Web3 sponsor of the MLH Hackathon League</b> and the first
Layer 1 blockchain custom-built for decentralized social media applications.
While a blockchain like Avalanche costs $0.50+ to store just a 200-character post,
the DeSo blockchain is built with custom indexing and storage optimizations
which make it <a href="https://hackp.ac/deso-blog-smartcontracts"><u>10,000X cheaper
to store social content on-chain</u></a>
! In order to qualify for the contest, build a hack that uses the <a
href="https://hackp.ac/deso-devhub"><u>DeSo API</u></a>.
While social media apps are a great fit for DeSo, you can also build financial apps,
marketplaces, and more on the DeSo blockchain.
To get started, sign up for a <a
href="https://hackp.ac/deso-diamondapp"><u>DiamondApp</u></a> account, make a
post tagging @deso with both your event hashtag & #MLH.
The DeSo team will then send you even more $DESO coin to build your hackathon
project! On top of that, the team with <b>the Best Use of DeSo </b>gets<b> $100
worth of $DESO coin,
an exclusive DeSo branded tumbler, and a YubiKey Security Key!</b></p>
</div>
<div class="modal-footer prize-modal-footer">
<a href="https://hackp.ac/deso">Build with Deso →</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 order-md-12 aos-init aos-animate" data-aos="fade-up"
data-aos-anchor-placement="top-bottom" data-aos-duration="1000">
<div class="mainMLH">
<div class="service">
<div class="service-logo mlh-logo"><img src="assets/img/custom-microsoft.png" alt="mlh">
</div>
<h5 class="prize-heading" style="font-size:20px"><b>Best Use of Microsoft Cloud for
Community</b></h5>
<p>Prize: <b>LinkedIn Premium 12-Month subscription and Xbox Ultimate 3-Month Game Pass</b>
</p>
<div class="prizes-btn" style="margin-top:15px"><button class="cta"
data-target="#mlhprize5_modal-2" data-toggle="modal">
<span class="hover-underline-animation"> Know more </span>
</button></div>
</div>
<div class="shadowOneMLH"></div>
<div class="shadowTwoMLH"></div>
</div>
</div>
<div class="modal fade" id="mlhprize5_modal-2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header prize-modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Use of Microsoft Cloud<br />for
Your Community</h5>
</div>
<div class="modal-body prize-modal-body">
<p>Bring your idea to life using the Microsoft Cloud - automatically build and deploy a
full stack web app from a code repository,
create and train a Machine Learning model, develop business applications with little
to no code using Power Platform, and more!
View our recommended popular solutions in the Education Hub at <a
href="https://aka.ms/startedu"><u>https://aka.ms/startedu</u></a>.
</p>
<p>Build your hackathon project with the Microsoft Cloud that tackles a social impact
issue of your choice, and have a chance to
win a <a href="https://premium.linkedin.com/"><u><b>LinkedIn Premium 12-Month
subscription</b></u></a> and an
<a
href="https://www.xbox.com/xbox-game-pass?xr=shellnav%22%20%5Cl%20%22faq%22%20%5Co%20%22https://www.xbox.com/xbox-game-pass?xr=shellnav#faq">
<u><b>XBox Ultimate 3-Month Game Pass</b></u></a>.
</p>
</div>
<div class="modal-footer prize-modal-footer">
<a href="https://hackp.ac/microsoft">Build with the Microsoft Cloud →</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 order-md-12 aos-init aos-animate" data-aos="fade-up"
data-aos-anchor-placement="top-bottom" data-aos-duration="1000">
<div class="mainMLH">
<div class="service">
<div class="service-logo mlh-logo"><img src="assets/img/custom-godaddy.png" alt="mlh"></div>
<h5 class="prize-heading" style="font-size:20px"><b>Best Domain Name from GoDaddy
Registry</b></h5>
<p>Prize: <b>Hack from Home kit</b></p>
<div class="prizes-btn" style="margin-top:15px"><button class="cta"
data-target="#mlhprize5_modal-3" data-toggle="modal">
<span class="hover-underline-animation"> Know more </span>
</button></div>
</div>
<div class="shadowOneMLH"></div>
<div class="shadowTwoMLH"></div>
</div>
</div>
<div class="modal fade" id="mlhprize5_modal-3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header prize-modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Domain Name<br />from GoDaddy
Registry</h5>
</div>
<div class="modal-body prize-modal-body">
<p>GoDaddy Registry is giving you everything you need to be the best hacker no matter
where you are.
Register your domain name with GoDaddy Registry for a chance to win a Hack from Home
Kit! Each Kit
contains wireless earbuds, blue light glasses, selfie ring light and a pouch for
easy transport.</p>
</div>
<div class="modal-footer prize-modal-footer">
<a href="https://hackp.ac/GoDaddyRegistry">Build with GoDaddy Registry →</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 order-md-12 aos-init aos-animate" data-aos="fade-up"
data-aos-anchor-placement="top-bottom" data-aos-duration="1000">
<div class="mainMLH">
<div class="service">
<div class="service-logo mlh-logo"><img src="assets/img/custom-auth0.png" alt="mlh"></div>
<h5 class="prize-heading" style="font-size:20px"><b>Best Use of Auth0</b></h5>
<p>Prize: <b>Exclusive Auth0 Swag made for MLH</b></p>
<div class="prizes-btn" style="margin-top:15px"><button class="cta"
data-target="#mlhprize5_modal-4" data-toggle="modal">
<span class="hover-underline-animation"> Know more </span>
</button></div>
</div>
<div class="shadowOneMLH"></div>
<div class="shadowTwoMLH"></div>
</div>
</div>
<div class="modal fade" id="mlhprize5_modal-4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header prize-modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best use Auth0</h5>
</div>
<div class="modal-body prize-modal-body">
<p>Auth0 wants your applications to be secure! Use any of the Auth0 APIs for a chance to
win some exclusive swag,
including a 12oz tumbler, Rubik's Cube, and sticker! Why spend hours building
features like social sign-in,
Multi-Factor Authentication, and passwordless log-in when you can enable them
through Auth0 straight out of
the box? Save some time on your hack and set yourself up for a big win. It doesn't
take much to get started.
Auth0 is free to try, no credit card required, with up to 7,000 free active users
and unlimited log-ins.
Make your new account today!</p>
</div>
<div class="modal-footer prize-modal-footer">
<a href="https://hackp.ac/auth0-signup">Build with Auth0 →</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 order-md-12 aos-init aos-animate" data-aos="fade-up"
data-aos-anchor-placement="top-bottom" data-aos-duration="1000">
<div class="mainMLH">
<div class="service">
<div class="service-logo mlh-logo"><img src="assets/img/custom-velo.png" alt="mlh"></div>
<h5 class="prize-heading" style="font-size:20px"><b>Best Use of Velo by Wix</b></h5>
<p>Prize: <b>Wacom Drawing Tablet</b></p>
<div class="prizes-btn" style="margin-top:15px"><button class="cta"
data-target="#mlhprize5_modal-5" data-toggle="modal">
<span class="hover-underline-animation"> Know more </span>
</button></div>
</div>
<div class="shadowOneMLH"></div>
<div class="shadowTwoMLH"></div>
</div>
</div>
<div class="modal fade" id="mlhprize5_modal-5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header prize-modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best use of Velo by Wix</h5>
</div>
<div class="modal-body prize-modal-body">
<p>We know how difficult it can be to create a phenomenal website in a short period of
time,
especially when it comes to hackathons. Velo by Wix cuts down your development
without sacrificing on
functionality! With a built-in database and fully customizable JavaScript front-end
and back-end,
you can develop a full-stack application directly in your browser. With Velo, all
the tools you need are
conveniently located in one platform! Build your hackathon project with Velo by Wix
for a chance to win
Wacom Drawing Tablets for you and each of your teammates.</p>
</div>
<div class="modal-footer prize-modal-footer">
<a href="https://hackp.ac/wix">Build with Velo by Wix →</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 order-md-12 aos-init aos-animate" data-aos="fade-up"
data-aos-anchor-placement="top-bottom" data-aos-duration="1000">
<div class="mainMLH">
<div class="service">
<div class="service-logo mlh-logo"><img src="assets/img/custom-elastic.png" alt="mlh"></div>
<h5 class="prize-heading" style="font-size:20px"><b>Best Use of Elastic Search</b></h5>
<p>Prize: <b>Schwags Boxes for Top 5 Teams</b></p>
<div class="prizes-btn" style="margin-top:15px"><button class="cta"
data-target="#mlhprize5_modal-6" data-toggle="modal">
<span class="hover-underline-animation"> Know more </span>
</button></div>
</div>
<div class="shadowOneMLH"></div>
<div class="shadowTwoMLH"></div>
</div>
</div>
<div class="modal fade" id="mlhprize5_modal-6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header prize-modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Best Use of Elastic Search</h5>
</div>