-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
3032 lines (2913 loc) · 114 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 charset="UTF-8" />
<meta name="description" content="" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<meta
name="google-site-verification"
content="Exxlz7urXb5XhU5rgnhuvVPa6tegzMO-w1L4seva_x8"
/>
<meta
name="description"
content="HackVerse - 2nd Edition of the 24 Hour Nation-Wide Hackathon at NITK, Surathkal"
/>
<meta
name="keywords"
content="HackVerse, Hackathon, Nation-Wide, NITK Surathkal, Prizes, 2nd Edition"
/>
<meta
property="og:title"
content="HackVerse - 2nd Edition of One of India's Biggest Student Run Hackathons"
/>
<meta
property="og:description"
content="HackVerse - 2nd Edition of the 24 Hour Nation-Wide Hackathon at NITK, Surathkal"
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/HackVerse/HackVerseV2/master/img/logo.webp"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="hackverse.nitk.ac.in" />
<link rel="icon" href="/img/logo.png" />
<title>HackVerse 2.0 | February, 2021</title>
<script
src="https://kit.fontawesome.com/ecbc21292c.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link
href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css"
rel="stylesheet"
/>
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<link
href="https://unpkg.com/@pqina/flip/dist/flip.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/events.css" />
<link rel="stylesheet" href="css/prizes.css" />
<link rel="stylesheet" href="css/schedule.css" />
</head>
<body>
<!--Welcome Area-->
<header>
<div class="welcome jumbotron">
<div class="logo" data-aos="fade-right" data-aos-duration="800"></div>
<div class="content" data-aos="fade-left" data-aos-duration="800">
<img class="banner" src="./img/Banner.png" alt="EVENT BY NITK" />
<h1 class="subtitle mt-3">24-HOUR NATION WIDE HACKATHON</h1>
<h1 class="title">
<a href="https://youtu.be/AooUtb5dGUI" class="title" target="_blank" style="color:black">
HACK<span style="color: #233452">VERSE</span>
<span style="color: #db2121">2.0</span>
</a>
</h1>
<div class="extras">
<div class="alert alert-light date">
<span
class="material-icons"
style="margin-right: 5px"
>calendar_today</span
>
<span style="text-align: left; color:black;">
27-28th Feb, 2021</span>
</div>
<div>
<a
href="http://hackverse.nitk.ac.in/2020"
target="_blank"
rel="noopener noreferrer"
class="revisit alert alert-light"
>
<span
class="material-icons"
style="margin-right: 5px"
>history</span
>
<span style="text-align: left; color:black"
>Revisit HackVerse '20</span
>
</a>
</div>
</div>
<div class="extras" style="padding-bottom:12px;">
<div class="alert alert-success date" style="color: #7289da; ">
<i class="fab fa-discord mr-2" aria-hidden="true"></i>
<a href="https://discord.gg/sMNZvATkCr" style="color: purple; font-size:1.5em">Join Our Discord Server</a>
</div>
</div>
<div
class="apply-button"
data-hackathon-slug="hackverse2021"
data-button-theme="light"
style="height: 44px; width: 312px"
></div>
</div>
</div>
</header>
<!--------------------------------------------------------------------------------------------------------------------------->
<!--What is HackVerse-->
<section class="part-2">
<div class="container align-items-center">
<div class="row justify-content-center" style="padding-bottom: 30px">
<div
class="col-12 col-lg-5 offset-lg-1 order-lg-last justify-content-center"
>
<img
class="logo-2"
src="img/logo.webp"
onerror="this.onerror=null;this.src='img/logo.png';"
alt="Hackverse2.0"
/>
</div>
<div class="col-12 col-lg-6 order-lg-first about">
<h2 style="font-family: 'Lobster', cursive">
What Is HackVerse 2.0
</h2>
<br />
<p class="lead">
HackVerse serves as a platform to encourage enthusiastic minds to
brainstorm on solutions for challenging issues from all over
India. The unified motive of gathering all like-minded hackers to
our alma mater, is what led to the creation of the idea in NITK
Surathkal, the first of its kind. We’ll provide a platform for
innovations, where developers can test and showcase their
potential to the best of their abilities. The hackathon will also
have keynotes & workshops from executives from the industry.
</p>
</div>
</div>
<!-- HackVerse 2.0 stats -->
<div class="container mt-5 mb-5">
<div class="row">
<div class="col-12 col-md-12">
<div class="section-heading-2">
<h3 class="text-center schedule-header" style="margin-bottom: 70px; color: black">
HackVerse 2.0 Stats
</h3>
</div>
</div>
</div>
<div class="row stats">
<div class="col-12 col-lg-4">
<div class="text-center mb-100">
<i class="fas fa-users fa-4x" aria-hidden="true"></i>
<div class="milestone-number">
<span class="number-holder">2800</span>
<span class="number-suffix">+</span>
</div>
<div class="milestone-desc">Total Registrations</div>
</div>
</div>
<div class="col-12 col-lg-4">
<div class="text-center mb-100">
<i class="fas fa-user-secret fa-4x" aria-hidden="true"></i>
<div class="milestone-number">
<span class="number-holder">700</span>
<span class="number-suffix">+</span>
</div>
<div class="milestone-desc">Hackers Hosted</div>
</div>
</div>
<div class="col-12 col-lg-4">
<div class="text-center mb-100">
<i class="fas fa-university fa-4x" aria-hidden="true"></i>
<div class="milestone-number">
<span class="number-holder">140</span>
<span class="number-suffix">+</span>
</div>
<div class="milestone-desc">Engineering Institutes</div>
</div>
</div>
<!-- <div class="col-12 col-lg-3 mb-100">
<div class="text-center mb-100">
<i class="fas fa-globe fa-4x" aria-hidden="true"></i>
<div class="milestone-number">
<span class="number-holder">15</span>
<span class="number-suffix">+</span>
</div>
<div class="milestone-desc">Companies</div>
</div>
</div> -->
</div>
</div>
<!-- <div class="row justify-content-center">
<div class="col-9 iframe-container">
<iframe
class="responsive-iframe"
src="https://www.youtube.com/embed/VD_wGhoDtUE"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div> -->
<!-- <div class="row">
<div class="col-12">
<div
class="section-heading-2"
style="margin-bottom: 0px !important; margin-top: 50px"
>
<h3 class="text-center schedule-header" style="color: black">
Live Judging Begins In
</h3>
</div>
</div>
</div>
<div class="text-center" style="padding-bottom: 40px; padding-top: 100px">
<div class="tick" data-did-init="handleTickInit">
<div
data-repeat="true"
data-layout="horizontal fit"
data-transform="preset(d, h, m, s) -> delay"
>
<div class="tick-group">
<div
data-key="value"
data-repeat="true"
data-transform="pad(00) -> split -> delay"
>
<span data-view="flip"></span>
</div>
<span
data-key="label"
data-view="text"
class="tick-label"
></span>
</div>
</div>
</div>
</div> -->
<!-- Schedule -->
<div class="row">
<div class="col-12">
<div
class="section-heading-2"
style="margin-bottom: 0px !important; margin-top: 40px"
>
<h3 class="text-center schedule-header" style="color: black">
Schedule
</h3>
</div>
</div>
<div class="col-12">
<div id="timeline-content">
<div><h4 style="text-align: left">27 Feb 2021</h4></div>
<ul class="timeline">
<li class="event" data-date="09:30AM" style="color: black">
<div class="member-infos">
<h1 class="member-title active-sch" style="cursor: pointer">
Opening Ceremony - <a href="https://youtu.be/v6s543aH948" target="_blank">Watch On Youtube</a>
<i class="fa fa-plus-circle float-right exp-sch"></i>
</h1>
<div class="member-location" style="padding-top:5px;">
<ul style="list-style: none;">
<li><h5>09.30AM - Introduction </h5></li>
<li><h5>09.40AM - Welcome Address </h5></li>
<li><h5>09.45AM - HackVerse 2.0 Report</h5></li>
<li><h5>09.50AM - Inagural Address</h5></li>
<li><h5>10.00AM - Cheif Guest's Address</h5></li>
<li><h5>10.20AM - Presidential Address</h5></li>
<li><h5>10.30AM - Vote of Thanks</h5></li>
</ul>
</div>
</div>
</li>
<li id="fader" class="event" data-date="10:40AM">
<div class="member-infos">
<h1 class="member-title">
Opening Announcements - <a href="https://youtu.be/v6s543aH948?t=3705" target="_blank">Watch On Youtube</a>
<!-- <i class="fa fa-plus-circle float-right exp-sch"></i> -->
</h1>
</div>
</li>
<li id="fader" class="event" data-date="11:00AM">
<div class="member-infos">
<h1 class="member-title">
Participants Check-In
<!-- <i class="fa fa-plus-circle float-right exp-sch"></i> -->
</h1>
</div>
</li>
<li class="event" data-date="12:00PM">
<div class="member-infos">
<h1 class="member-title">
Coding Begins
<!-- <i class="fa fa-plus-circle float-right exp-sch"></i> -->
</h1>
</div>
</li>
<li class="event" data-date="04:00PM">
<div class="member-infos">
<h1 class="member-title">
CodeChef Hours #1 and #2
<i class="fa fa-plus-circle float-right exp-sch"></i></h1>
<div class="member-location" style="padding-top:5px;">
<ul style="list-style: none;">
<li><h5>01.00PM - CodeChef Hour #1 </h5></li>
<li><h5>04.00PM - CodeChef Hour #2 </h5></li>
</ul>
</div>
</div>
</li>
<li class="event" data-date="05:00PM">
<div class="member-infos">
<h1 class="member-title">
MLH Mini Event
<!-- <i class="fa fa-plus-circle float-right exp-sch"></i> -->
</h1>
</div>
</li>
<li class="event" data-date="08:00PM">
<div class="member-infos">
<h1 class="member-title last-rs">
CodeChef Hours #3 and #4
<i class="fa fa-plus-circle float-right exp-sch"></i></h1>
<div class="member-location" style="padding-top:5px;">
<ul style="list-style: none;">
<li><h5>08.00PM - CodeChef Hour #3 </h5></li>
<li><h5>10.00PM - CodeChef Hour #4 </h5></li>
</ul>
</div>
</div>
</li>
</ul>
<div>
<h4 style="text-align: left; padding-top: 20px">28 Feb 2021</h4>
</div>
<ul class="timeline">
<li class="event" data-date="01:00AM">
<div class="member-infos">
<h1 class="member-title last-rs">
CodeChef Hours #5, #6 and #7 <!-- - <a href="https://www.codechef.com/CCHR006" target="_blank">Join the Contest</a> -->
<i class="fa fa-plus-circle float-right exp-sch"></i></h1>
<div class="member-location" style="padding-top:5px;">
<ul style="list-style: none;">
<li><h5>01.00AM - CodeChef Hour #5 </h5></li>
<li><h5>08.00AM - CodeChef Hour #6 </h5></li>
<li><h5>10.00AM - CodeChef Hour #7 </h5></li>
</ul>
</div>
</div>
</li>
<li class="event" data-date="12:00PM" >
<div class="member-infos">
<h1 class="member-title">Coding Ends, Judging Begins
<!-- - <a href="https://docs.google.com/document/d/e/2PACX-1vTZ8jyT5QRGxxxEAIzXFp2ovx2rVJd4QK-pSl2egENsf5TOYDP98p47Y-8FI-OGOsFA5rkPXxskVkfO/pub"
target="_blank">Submission Guidelines</a> -->
</h1>
</div>
</li>
<li id="fader" class="event" data-date="05:30PM">
<div class="member-infos">
<h1 class="member-title">
Live Judging - <a href="https://youtu.be/VD_wGhoDtUE" target="_blank">Watch on Youtube</a>
</h1>
</div>
</li>
<li class="event" data-date="08:00PM">
<div class="member-infos">
<h1 class="member-title last-rs" style="cursor: pointer">
Results Announcement
<i class="fa fa-plus-circle float-right exp-sch"></i>
</h1>
<div class="member-location" style="padding-top:5px;">
<ul style="list-style: none;">
<li><h5>08.00PM - MLH Prizes Announcement </h5></li>
<li><h5>08.05PM - Judges' Experience </h5></li>
<li><h5>08.20PM - Track Prizes Announcement </h5></li>
<li><h5>08.30PM - Valedictory Address </h5></li>
<li><h5>08.40PM - Main Prizes Announcement </h5></li>
<li><h5>08.50PM - Vote of Thanks </h5></li>
</ul>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--Section Breaker Welcome/Events-->
<div class="section-divider stat-color unselectable">
<img
src="./img/Sea creatures/S2.png"
style="
height: auto;
position: absolute;
z-index: 4;
transform: translateY(-12%);
left: 1%;
"
alt="Sea creature"
id="sea-creatures"
/>
<img
src="./img/Sea creatures/S3.png"
style="
height: auto;
position: absolute;
z-index: 4;
right: 1%;
transform: translateY(-12%);
"
alt="Sea creature"
id="sea-creatures"
/>
<img
src="img/section_breaker_blue/W1.webp"
onerror="this.onerror=null;this.src='img/section_breaker_blue/W1.png';"
/>
</div>
<!--------------------------------------------------------------------------------------------------------------------------->
<!-- Events Section-->
<section class="part-3">
<div class="events-container">
<div class="row">
<div class="col-12 col-md-12">
<div class="section-heading-2">
<h4
class="text-center"
style="
margin-bottom: 70px;
color: black;
font-family: 'Lobster', cursive;
"
>
Events and Updates
</h4>
</div>
</div>
</div>
<div class="carousel">
<input type="radio" name="slides" checked="checked" id="slide-1" />
<input type="radio" name="slides" id="slide-2" />
<input type="radio" name="slides" id="slide-3" />
<input type="radio" name="slides" id="slide-4" />
<input type="radio" name="slides" id="slide-5" />
<input type="radio" name="slides" id="slide-6" />
<ul class="carousel__slides">
<li class="carousel__slide">
<figure>
<div>
<img
src="img/events/make-with-hackverse-manas.webp"
onerror="this.onerror=null;this.src='img/events/make-with-hackverse-manas.jpg';"
alt=""
/>
</div>
<figcaption>
<strong>
<span style="font-size: 1.3em">
Make With HackVerse: Your First Desktop Application Using Java and MySQL
</span><br />
Date: 26th February 2021<br />
Time: 4:00 PM<br />
<a href="https://youtu.be/kfKOjI9cOOg">Join On Youtube!</a
><br /><br />
A hands-on workshop by Manas Trivedi.<br />
Make sure you have the required software installed before the session.<br />
Check out the <a href="http://bit.ly/37Moerg">Installation guide</a><br />
</strong>
</figcaption>
</figure>
</li>
<li class="carousel__slide">
<figure>
<div>
<img
src="img/events/make-with-hackverse-gaurav-2.webp"
onerror="this.onerror=null;this.src='img/events/make-with-hackverse-gaurav-2.jpg';"
alt=""
/>
</div>
<figcaption>
<strong>
<span style="font-size: 1.3em"
>Make With HackVerse: Secure Chat Application with
WebSockets: Part-2</span
><br />
Date: 24th February 2021<br />
Time: 4:00 PM<br />
<a href="https://youtu.be/gcdKTFwN4FM">Watch On Youtube!</a
><br /><br />
Watch <a href="https://youtu.be/bQLutm4hS6w">Part 1</a><br />
The second part of the hands-on workshop by Gaurav Chaurasia
where you will build a chat application from scratch,
step-by-step.<br />
Prerequisites: Basics of HTML, CSS, Javascript. Node.js must
be pre-installed on your system.<br /></strong>
</figcaption>
</figure>
</li>
<li class="carousel__slide">
<figure>
<div>
<img
src="img/events/codechef-workshop.webp"
onerror="this.onerror=null;this.src='img/events/codechef-workshop.jpg';"
alt=""
/>
</div>
<figcaption>
<strong>
<span style="font-size: 1.3em"
>HeadStart to Competitive Programming</span
><br />
Date: 6th February 2021<br />
Time: 1:00 PM<br />
Access Code: HEADSTART <br />
<a
href="https://unacademy.com/class/headstart-to-competitive-programming/OIZ5ZAN6"
>Join Now!</a
><br /><br />
Brush up your coding skills with this workshop by CodeChef
in association with HackVerse.<br /><br />
Sanket Singh, SDE at LinkedIn, will be hosting this hands-on
workshop with fun-filled activities in the lineup to provide
you a headstart in cracking coding interviews. </strong
><br />
</figcaption>
</figure>
</li>
<li class="carousel__slide">
<figure>
<div>
<img
src="img/events/yocket-webinar.webp"
onerror="this.onerror=null;this.src='img/events/yocket-webinar.jpg';"
alt=""
/>
</div>
<figcaption>
<strong
>HackVerse 2.0 in association with Yocket is here to help
you to build an amazing profile for top universities.<br /><br />
Attend the Webinar for free guidance from Expert Counselors
on securing admissions to top universities abroad.<br /><br />
Date: 30th January, 2021<br />
Time: 4:30 PM<br />
<a href="https://event.webinarjam.com/register/366/844q6tvg"
>Register Now!</a
></strong
><br />
</figcaption>
</figure>
</li>
<li class="carousel__slide">
<figure>
<div>
<img
src="img/events/mlh-web-scraping.webp"
onerror="this.onerror=null;this.src='img/events/mlh-web-scraping.jpg';"
alt=""
/>
</div>
<figcaption>
<strong
>MLH Localhost session on Web Scraping in Python hosted by
S.R.Sahith<br /><br />
The session covered Web Scraping using BeautifulSoup and
Regular Expression Python libraries to create a bot of any
Twitter celebrity!<br /><br />
<a href="https://youtu.be/98k5QSqDhXQ"
>Watch on Youtube</a
></strong
>
</figcaption>
</figure>
</li>
<li class="carousel__slide">
<figure>
<div>
<img
src="img/events/hacktober-workshop.webp"
onerror="this.onerror=null;this.src='img/events/hacktober-workshop.jpg';"
alt=""
/>
</div>
<figcaption>
<strong
>Online Meetup at NITK Surathkal organized as part of
Hacktoberfest<br /><br />
Maintainers were invited to guide would-be contributors
towards issues that will help move the project forward, and
contributors get the opportunity to give back to the
projects .<br /><br />
<a
href="https://youtube.com/playlist?list=PL9G8ordCN9gt1zZhGA6HcoYjoiwj_ac0z"
>Watch on Youtube</a
></strong
>
</figcaption>
</figure>
</li>
</ul>
<ul class="carousel__thumbnails">
<li>
<label class="carousel-label" for="slide-1">
<img
src="img/events/make-with-hackverse-manas.webp"
onerror="this.onerror=null;this.src='img/events/make-with-hackverse-manas.jpg';"
alt=""
/>
</label>
</li>
<li>
<label class="carousel-label" for="slide-2">
<img
src="img/events/make-with-hackverse-gaurav-2.webp"
onerror="this.onerror=null;this.src='img/events/make-with-hackverse-gaurav-2.jpg';"
alt=""
/>
</label>
</li>
<li>
<label class="carousel-label" for="slide-3">
<img
src="img/events/codechef-workshop.webp"
onerror="this.onerror=null;this.src='img/events/codechef-workshop.jpg';"
alt=""
/>
</label>
</li>
<li>
<label class="carousel-label" for="slide-4">
<img
src="img/events/yocket-webinar.webp"
onerror="this.onerror=null;this.src='img/events/yocket-webinar.jpg';"
alt=""
/>
</label>
</li>
<li>
<label class="carousel-label" for="slide-5">
<img
src="img/events/mlh-web-scraping.webp"
onerror="this.onerror=null;this.src='img/events/mlh-web-scraping.jpg';"
alt=""
/>
</label>
</li>
<li>
<label class="carousel-label" for="slide-6">
<img
src="img/events/hacktober-workshop.webp"
onerror="this.onerror=null;this.src='img/events/hacktober-workshop.jpg';"
alt=""
/>
</label>
</li>
<!--
<li>
<label class="carousel-label" for="slide-6"><img src="https://picsum.photos/id/1052/150/150" alt=""></label>
</li>-->
</ul>
</div>
</div>
</section>
<!--Section Breaker-->
<div class="section-divider unselectable" style="background-color: #2df0df">
<img
src="img/section_breaker_blue/W3.webp"
onerror="this.onerror=null;this.src='img/section_breaker_blue/W4.png';"
/>
</div>
<!--------------------------------------------------------------------------------------------------------------------------->
<!-- Prizes -->
<section id="prizes">
<div class="container">
<div class="row">
<div class="col-12 col-md-12">
<div class="section-heading-2">
<h4 class="text-center" style="margin-bottom: 70px; color: black">
HackVerse 2.0 Prizes
</h4>
</div>
</div>
</div>
<div class="prize-body">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-4 mb-3">
<div class="prize-wrapper">
<div class="prize-card prize-card-size">
<input
type="checkbox"
id="card1"
class="more"
aria-hidden="true"
/>
<div class="prize-content">
<div class="front">
<div class="inner">
<h6
class="ticket-plan"
style="background-color: gold !important"
>
1st Prize
</h6>
<div class="ticket-icon">
<img src="img/Gold.png" alt="1st Prize" />
</div>
<div>
<h2
class="ticket-price"
style="font-size: 2em !important"
>
<span>₹</span>50,000
</h2>
</div>
<div class="text-center" style="color: #000; font-family: Barlow Semi Condensed;">
<p> <strong>Claimed By: </strong> </p>
<p class="lead"><a href="https://devfolio.co/submissions/hashbyte-9bd9" target="_blank" rel="noopener noreferrer">HashByte</a> </p>
<p class="lead" >• Yash Verma • Vedant Saxena • Tanmay Shishodia </p>
</div>
<label for="card1" class="prize-button" aria-hidden="true" style="color: black !important; border-color: black">
Details
</label>
</div>
</div>
<div class="back">
<div class="inner">
<div class="description">
<ul style="list-style-type: square">
<li>Devfolio and DigitalOcean Goodies for each team member </li>
<li>Unlimited use of <a href="https://www.clerky.com/pricing">Clerky </a>
standard Fundraising, Hiring, Commercial, and Maintenance products for the lifetime of your startup worth USD 799.
</li>
<li>GeeksForGeeks course worth ₹3500 for each team member</li>
<li>3-month free membership to Qfuss</li>
<li>Learning While Travelling academy's 6-month free membership(Worth ₹1499 per month) </li>
</ul>
</div>
<div class="location">1st Prize</div>
<div class="price">₹50,000</div>
<label
for="card1"
class="prize-button return"
aria-hidden="true"
>
<i class="fas fa-arrow-left"></i>
</label>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-4 mb-3 order-lg-first">
<div class="prize-wrapper prize-step">
<div class="prize-card prize-card-size">
<input
type="checkbox"
id="card2"
class="more"
aria-hidden="true"
/>
<div class="prize-content">
<div class="front">
<div class="inner">
<h6
class="ticket-plan"
style="background-color: #c0c0c0 !important"
>
2nd Prize
</h6>
<div class="ticket-icon" >
<img src="img/Silver.png" alt="2nd Prize" />
</div>
<div>
<h2
class="ticket-price"
style="font-size: 2em !important"
>
<span>₹</span>35,000
</h2>
</div>
<div class="text-center" style="color: #000; font-family: Barlow Semi Condensed;">
<p> <strong>Claimed By: </strong> </p>
<p class="lead"><a href="https://devfolio.co/submissions/snaplify-7885" target="_blank" rel="noopener noreferrer">XLR8</a> </p>
<p class="lead" >• Mihir Khambhati • Krunal Rank</p>
</div>
<label for="card2" class="prize-button" aria-hidden="true" style="color: black !important; border-color: black">
Details
</label>
</div>
</div>
<div class="back">
<div class="inner">
<div class="description">
<ul style="list-style-type: square">
<li>Devfolio and DigitalOcean Goodies for each team member.</li>
<li>GeeksForGeeks course worth ₹2500 for each team member.</li>
<li>3-month free membership to Qfuss.</li>
<li>Learning While Travelling academy's 6-month free membership(Worth ₹1499 per month) </li>
</ul>
</div>
<div class="location">2nd Prize</div>
<div class="price">₹35,000</div>
<label
for="card2"
class="prize-button return"
aria-hidden="true"
>
<i class="fas fa-arrow-left"></i>
</label>
</div>
</div>
</div>
</div>
</div>
</div>
<!--style="background: linear-gradient(0deg, #5588cc , white) !important;"-->
<div class="col-sm-12 col-md-12 col-lg-4 mb-3 order-lg-last">
<div class="prize-wrapper prize-step">
<div class="prize-card prize-card-size">
<input
type="checkbox"
id="card3"
class="more"
aria-hidden="true"
/>
<div class="prize-content">
<div class="front">
<div class="inner">
<h6
class="ticket-plan"
style="background-color: #cd7f32 !important"
>
3rd Prize
</h6>
<div class="ticket-icon">
<img src="img/Bronze.png" alt="3rd Prize" />
</div>
<div>
<h2
class="ticket-price"
style="font-size: 2em !important"
>
<span>₹</span>25,000
</h2>
</div>
<div class="text-center" style="color: #000; font-family: Barlow Semi Condensed;">
<p> <strong>Claimed By: </strong> </p>
<p class="lead"><a href="https://devfolio.co/submissions/lend-a-hand-e721" target="_blank" rel="noopener noreferrer">LEGO</a> </p>
<p class="lead" >• Shobit Tulshain • Shruti Nk • Geeth Kuldeep</p>
</div>
<label for="card3" class="prize-button" aria-hidden="true" style="color: black !important; border-color: black">
Details
</label>
</div>
</div>
<div class="back">
<div class="inner">
<div class="description">
<ul style="list-style-type: square">
<li>Devfolio and DigitalOcean Goodies for each team member.</li>
<li>GeeksForGeeks course worth ₹2000 for each team member.</li>
<li>3-month free membership to Qfuss.</li>
<li>Learning While Travelling academy's 6-month free membership(Worth ₹1499 per month)</li>
</ul>
</div>
<div class="location">3rd Prize</div>
<div class="price">₹25,000</div>
<label
for="card3"
class="prize-button return"
aria-hidden="true"
>
<i class="fas fa-arrow-left"></i>
</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-12">
<div class="section-heading-2">
<h4
class="text-center"
style="
margin-top: 40px;
color: white;
font-size: 1.8em !important;
"
>
<a href="#tracks">Track Prizes</a> worth ₹50,000 and more
available
</h4>
</div>
</div>
</div>
<!--API Prizes-->
<div class="row" style="padding-bottom: 30px">
<div class="col-12">
<div
class="section-heading-2"
style="
margin-top: 30px;
margin-bottom: 0px !important;
font-size: 2.5em;
"
>
<h4 class="text-center">Special Prizes</h4>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-6 col-lg-3">
<div class="prize-wrapper">
<div class="prize-card api-card-size">
<input
type="checkbox"
id="card5"
class="more"
aria-hidden="true"
/>
<div class="prize-content">
<div
class="front"
style="