-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
2216 lines (2170 loc) · 84.5 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="google-site-verification"
content="Exxlz7urXb5XhU5rgnhuvVPa6tegzMO-w1L4seva_x8"
/>
<meta
name="description"
content="HackVerse - 3rd Edition of the 24 Hour Nation-Wide Hackathon at NITK, Surathkal"
/>
<meta
name="keywords"
content="HackVerse, Hackathon, Nation-Wide, NITK Surathkal, Prizes, 3rd Edition"
/>
<meta
property="og:title"
content="HackVerse - 3rd Edition of One of India's Biggest Student Run Hackathons"
/>
<meta
property="og:description"
content="HackVerse - 3rd Edition of the 24 Hour Nation-Wide Hackathon at NITK, Surathkal"
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/HackVerse/hackverse2022/main/img/logo.webp"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="hackverse.nitk.ac.in" />
<link rel="icon" href="./img/logo_light.webp" />
<!-- Bootstrap 5 -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<!-- Responsive design stylesheet-->
<link rel="stylesheet" href="responsive.css" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!-- <link rel="stylesheet" href="./alien.css" /> -->
<!-- Judges stylesheet-->
<link rel="stylesheet" href="judges/judges_style.css" />
<!--font-awesome for social media icons-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>Hackverse 3.0 | February 2022</title>
</head>
<body data-bs-spy="scroll" data-bs-target="#scroll-spy" data-bs-offset="90">
<div class="scene">
<div class="space">
<span></span>
<span></span>
<span></span>
<div class="comet">
<div class="comet-inner"></div>
</div>
</div>
</div>
<!-- navbar -->
<nav id="scroll-spy" class="navbar navbar-dark fixed-top navbar-expand-lg">
<div class="container" data-aos="fade-up" data-aos-once="true">
<img
src="./img/logo_light.webp"
width="80px"
alt="Hackverse"
class="navbar-brand navbar-logo-custom"
/>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="nav navbar-nav navbar-nav-scroll">
<li class="nav-item">
<a
class="nav-link active"
aria-current="page"
href="#home-section"
><span>HOME</span></a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-section"><span>ABOUT</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#schedule-section"
><span>SCHEDULE</span></a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#stats-section"><span>STATS</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#events-section"><span>EVENTS</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#prizes-section"><span>PRIZES</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#track-section"><span>TRACKS</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#judges-section"><span>JUDGES</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#sponsors-section"
><span>SPONSORS</span></a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#faqs-section"><span>FAQs</span></a>
</li>
<li class="dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
LINKS
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li class="nav-item">
<a class="nav-link dropdown-item" href="/blog"
>HackVerse Blog</a
>
</li>
<li class="nav-item">
<a class="nav-link dropdown-item" href="./team"
>HackVerse Team</a
>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Home Section -->
<div class="night">
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<!-- <div class="shooting_star"></div>
<div class="shooting_star"></div> -->
</div>
<div class="fluid-container fill" style="position: relative">
<section id="home-section">
<div class="home fluid-container d-flex flex-column">
<div class="container fill">
<!-- Add rectangular space on the top only in the front page to shift the contents below the navbar -->
<div class="home-top-space-custom"></div>
<div class="main row main-page">
<div
class="d-flex flex-column col-text col col-md-12 col-lg-4 heading-main"
data-aos="fade-right"
>
<p>February 26-27, 2022</p>
<h1 class="h1-title">
Imagine. <br />
Believe. <br />
Achieve! <br />
</h1>
<br />
<p>24-hour long hackathon · By NITK</p>
<a href="https://discord.gg/Vr6hraQuPb" class="pt-2 pb-2 pl-4 pr-4 text-center text-light mb-2 rounded fs-6" style="background-color: #5865F2; width: 312px;">
<img src="./img/discord.png" alt="Discord" style="height: 30px; margin-right: 10px;">
<b>Join Discord Server</b>
</a>
<div
class="apply-button"
data-hackathon-slug="hackverse2022"
data-button-theme="light"
style="width: 312px"
></div>
</div>
<div
data-aos="fade-left"
class="col col-md-12 col-lg-8 home-page-logo"
>
<img
width="95%"
src="./img/logo_long.webp"
alt="HackVerse 3.0"
/>
</div>
</div>
</div>
</div>
</section>
<!-- About hackverse -->
<section id="about-section">
<div class="about fluid-container d-flex align-items-center">
<div class="container">
<div class="row about-hackverse-container">
<div class="col col-md-12 col-lg-6" data-aos="fade-right">
<h1 class="h2-title title-about-hackverse mb-5">
About Hackverse 3.0
</h1>
<p class="h2-text text-hackverse">
<strong>HackVerse</strong> 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 led to the creation
of the idea in NITK Surathkal, the first of its kind. We
provide a platform for innovations where developers can test
and showcase their potential to the best of their abilities.
The hackathon also comprises keynotes and workshops by
executives from the industry.
</p>
<a href="https://hackverse.nitk.ac.in/2021/">
<button
class="revisit d-flex align-items-center justify-content-center"
>
<img src="./img/revisit.webp" width="28px" alt="re" />
<span> Revisit Hackverse 2.0 </span>
</button>
</a>
</div>
<div
class="col col-md-6 d-flex justify-content-end align-items-center"
>
<img
data-aos="zoom-in"
src="./img/logo.webp"
class="img-logo"
width="75%"
alt="Hackverse"
/>
</div>
</div>
</div>
</div>
</section>
<!-- Schedule Section -->
<section id="schedule-section">
<div class="schedule fluid-container d-flex flex-column">
<div class="container fill justify-content-center" data-aos="fade-up">
<h1 class="h2-title text-center">Schedule</h1>
<div class="row">
<div class="col-12">
<div id="timeline-content">
<div><h4 style="text-align: left">26 Feb 2022</h4></div>
<ul class="timeline" style="cursor:default;">
<li class="event" data-date="09:00AM" style="color: black">
<div class="member-infos">
<h1 class="member-title active-sch">
Opening Ceremony <br>
<a href="https://bit.ly/HV3-opening-ceremony" target="_blank">Watch On Youtube</a>
</h1>
<ul class="fw-normal" style="font-size: 0.8em">
<li>
Introduction by MC followed by NITK anthem <br>
<span class="fst-italic">Sanjana Balamurali, Student Organizer, Hackverse 3.0</span>
</li>
<li>
Welcome Address <br>
<span class="fst-italic">Prakriti Goyal, Lead Organizer, Hackverse 3.0</span>
</li>
<li>
A brief talk on NITK and Student Activities <br>
<span class="fst-italic">Prof. Narendranath S, Dean of Student Welfare, NITK</span>
</li>
<li>
Inaugral Address by Chief Guest <br>
<span class="fst-italic">Mr Ashish Banerjee, Technology Evangelist, QZip.in</span>
</li>
<li>
Presidential Address <br>
<span class="fst-italic">Prof. Udaykumar R. Yaragatti, Director in-charge, NITK</span>
</li>
<li>
Vote of Thanks <br>
<span class="fst-italic">Ritik Pansuriya, Technical Head, Hackverse 3.0</span>
</li>
</ul>
</div>
</li>
<li id="fader" class="event" data-date="10:05AM">
<div class="member-infos">
<h1 class="member-title">
Opening Announcements
<!-- - <a href="" target="_blank">Watch On Youtube</a> -->
</h1>
</div>
</li>
<li id="fader" class="event" data-date="11:00AM">
<div class="member-infos">
<h1 class="member-title">
Participants Check-In
</h1>
</div>
</li>
<li class="event" data-date="12:00PM">
<div class="member-infos">
<h1 class="member-title">
Coding Begins
</h1>
</div>
</li>
<li class="event" data-date="04:00PM">
<div class="member-infos">
<h1 class="member-title">
Wells Fargo Session: Banking Evolution - Usage of blockchain
<br />
<a href=" https://youtu.be/DVxLTYK-x2c" target="_blank">Watch On Youtube</a>
</h1>
</div>
</li>
<li class="event" data-date="06:00PM">
<div class="member-infos">
<h1 class="member-title">
Networking Session
</h1>
</div>
</li>
<li class="event" data-date="11:00PM">
<div class="member-infos">
<h1 class="member-title last-rs">
Midnight Evaluation</h1>
</div>
</li>
</ul>
<div>
<h4 style="text-align: left; padding-top: 20px">27 Feb 2022</h4>
</div>
<ul class="timeline" style="cursor: default;">
<li class="event" data-date="00:00AM">
<div class="member-infos">
<h1 class="member-title last-rs">
Midnight Evaluation
</h1>
</div>
</li>
<li class="event" data-date="12:00PM" >
<div class="member-infos">
<h1 class="member-title">Coding Ends, Judging Begins
- <a href="/docs/HackVerse_3.0___Submission_Guidelines.pdf"
target="_blank">Submission Guidelines</a>
</h1>
</div>
</li>
<li class="event" data-date="01:00PM" >
<div class="member-infos">
<h1 class="member-title">Live Exhibition</h1>
</div>
</li>
<li class="event" data-date="04:30PM">
<div class="member-infos">
<h1 class="member-title">
Announcement of Top 10 Teams
</h1>
</div>
<li id="fader" class="event" data-date="05:00PM">
<div class="member-infos">
<h1 class="member-title">
Live Judging
<br />
<a href="https://bit.ly/livejudging" target="_blank">Watch on Youtube</a>
</h1>
</div>
</li>
<li class="event" data-date="08:00PM">
<div class="member-infos">
<h1 class="member-title">
Closing Ceremony
<br />
<a href="https://bit.ly/HVclosing_ceremony" target="_blank">Watch on Youtube</a>
</h1>
<ul class="fw-normal" style="font-size: 0.8em;">
<li>
Introduction by MC <br>
<span class="fst-italic">Sanjana Balamurali, Student Organizer, Hackverse 3.0</span>
</li>
<li>
Welcome Address <br>
<span class="fst-italic">Ritik Pansuriya, Technical Head, Hackverse 3.0</span>
</li>
<li>
HackVerse 3.0 Report <br>
<span class="fst-italic">Ritik Pansuriya, Technical Head, Hackverse 3.0</span>
</li>
<li>
Introduction to Judges <br>
</li>
<li>
Judges Experience <br>
</li>
<li>
Company Prizes by respective companies <br>
</li>
<li>
Track Prizes announcements <br>
</li>
<li>
Main Prize announcement <br>
<span class="fst-italic">Prof. Narendranath S, Dean of Student Welfare, NITK</span>
</li>
<li>
Presidential Address <br>
<span class="fst-italic">Prof. Narendranath S, Dean of Student Welfare, NITK</span>
</li>
<li>
Vote of Thanks <br>
<span class="fst-italic">Prakriti Goyal, Lead Organiser, HackVerse 3.0</span>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section id="stats-section">
<div class="fluid-container stats d-flex flex-column">
<div class="container fill justify-content-center">
<h1 class="text-center bold-t1" data-aos="fade-down">
HackVerse 2.0 Stats
</h1>
<div
class="container d-flex justify-content-around align-items-center stats-items"
>
<div
class="d-flex justify-content-center align-items-center flex-column institute_icon"
>
<img
class="mb-md-5"
src="./img/programmer.webp"
width="192px"
alt="programmer"
data-aos="zoom-in"
/>
<h1 class="no-margin bold-t1 milestone-number">
<span class="number-holder">2800</span> +
</h1>
<p class="no-margin">Total Registerations</p>
</div>
<div
class="d-flex justify-content-center align-items-center flex-column institute_icon"
>
<img
class="mb-md-5"
src="./img/hacker.webp"
width="192px"
alt="hackers"
data-aos="zoom-in"
/>
<h1 class="bold-t1 no-margin milestone-number">
<span class="number-holder">700</span> +
</h1>
<p class="no-margin">Hackers Hosted</p>
</div>
<div
class="d-flex justify-content-center align-items-center flex-column institute_icon"
>
<img
class="mb-md-5"
src="./img/institute.webp"
width="192px"
alt="institute"
data-aos="zoom-in"
/>
<h1 class="bold-t1 no-margin milestone-number">
<span class="number-holder">140</span> +
</h1>
<p class="no-margin">Engineering Institutes</p>
</div>
</div>
</div>
</div>
</section>
<!-- Events Section -->
<section
id="events-section"
class="fluid-container events d-flex flex-column"
>
<div class="container fill justify-content-center">
<h1 class="h2-title text-center mb-5" data-aos="fade-down">
Events & Updates
</h1>
<div
id="events"
class="carousel slide carousel-fade mb-5"
data-bs-ride="carousel"
data-aos="zoom-in"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#events"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#events"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#events"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
<button
type="button"
data-bs-target="#events"
data-bs-slide-to="3"
aria-label="Slide 4"
></button>
</div>
<div class="carousel-inner container">
<div class="carousel-item active">
<div class="card mb-3">
<div class="row g-0">
<div class="col-md-4">
<img
src="./img/events/Wells_Talk.jpeg"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div
class="col-md-8 card-body d-flex flex-column justify-content-around"
>
<h3 class="card-title">
Banking Evolution, Usage of Blockchain
</h3>
<p class="card-text mt-4" style="width: 90%">
<small>
Speaker: Ramprabhu T Kadambi, Senior Vice President, Commercial Corporate and Investing Banking Technology, Wells Fargo.
</small>
</p>
<div class="row" style="color: #16b5e9">
<p class="col-7 col-md-3">
<i class="bi bi-calendar-event"></i> 26th Feb, 2022
</p>
<p class="col-5 col-md-3">
<i class="bi bi-clock"></i> 4:00 PM
</p>
</div>
<p class="card-text"></p>
<div>
<a
class="btn btn-outline-info"
href=" https://youtu.be/DVxLTYK-x2c"
target="_blank"
rel="noopener noreferrer"
>
<strong
><i class="bi bi-box-arrow-up-right"></i
> Watch</strong
>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card mb-3">
<div class="row g-0">
<div class="col-md-4">
<img
src="./img/events/Study_Abroad_webinar.jpeg"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div
class="col-md-8 card-body d-flex flex-column justify-content-around"
>
<h3 class="card-title">
Study Abroad Journey 🥳
</h3>
<p class="card-text mt-4" style="width: 90%">
<small
>
IDPs webinar on "Study Abroad Journey" in association with HackVerse. Get an opportunity to discuss your study abroad plans and hit the ground running to kick-start your study abroad journey.</small
>
</p>
<div class="row" style="color: #16b5e9">
<p class="col-7 col-md-3">
<i class="bi bi-calendar-event"></i> 25th Feb, 2022
</p>
<p class="col-5 col-md-3">
<i class="bi bi-clock"></i> 6:00 PM
</p>
</div>
<p class="card-text"></p>
<div>
<a
class="btn btn-outline-info"
href="https://bit.ly/hackverse-talk-4"
target="_blank"
rel="noopener noreferrer"
>
<strong
><i class="bi bi-box-arrow-up-right"></i
> Watch</strong
>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card mb-3">
<div class="row g-0">
<div class="col-md-4">
<img
src="./img/events/Event_Voice_AI.jpeg"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div
class="col-md-8 card-body d-flex flex-column justify-content-around"
>
<h3 class="card-title">
Adding in-app Voice AI assistant to your Apps
</h3>
<p class="card-text mt-4" style="width: 90%">
<small
>A talk on adding a customized Voice AI assistant to
your own apps, thus making them much more efficient
and user-friendly.</small
>
</p>
<div class="row" style="color: #16b5e9">
<p class="col-7 col-md-3">
<i class="bi bi-calendar-event"></i> 23rd Feb, 2022
</p>
<p class="col-5 col-md-3">
<i class="bi bi-clock"></i> 7:00 PM
</p>
</div>
<p class="card-text"></p>
<div>
<a
class="btn btn-outline-info"
href="https://bit.ly/hackverse-talk-3"
target="_blank"
rel="noopener noreferrer"
>
<strong
><i class="bi bi-box-arrow-up-right"></i
> Watch</strong
>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card mb-3">
<div class="row g-0">
<div class="col-md-4">
<img
src="./img/events/Mohit_Uniyal.jpeg"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div
class="col-md-8 card-body d-flex flex-column justify-content-around"
>
<h3 class="card-title">
Deep Learning foundation for Self-Driving Cars
</h3>
<p class="card-text mt-4" style="width: 90%">
<small
>A talk about the deep learning-based models on object
detection and segmentation that are the underlying
concepts for self-driving cars.</small
>
</p>
<div class="row" style="color: #16b5e9">
<p class="col-7 col-md-3">
<i class="bi bi-calendar-event"></i> 15th Feb, 2022
</p>
<p class="col-5 col-md-3">
<i class="bi bi-clock"></i> 4:00 PM
</p>
</div>
<p class="card-text"></p>
<div>
<a
class="btn btn-outline-info"
href="https://bit.ly/HackVerse-Talk-2"
target="_blank"
rel="noopener noreferrer"
>
<strong
><i class="bi bi-box-arrow-up-right"></i
> Watch</strong
>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card mb-3">
<div class="row g-0">
<div class="col-md-4">
<img
src="./img/events/Event_Judging_Platform.jpeg"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div
class="col-md-8 card-body d-flex flex-column justify-content-around"
>
<h3 class="card-title">
Make With HackVerse: Judging Platform using Django
</h3>
<p class="card-text mt-4" style="width: 90%">
<small
>A hands-on workshop where you will design a judging
platform using Django, from scratch, step-by-step.
</small>
</p>
<div class="row" style="color: #16b5e9">
<p class="col-7 col-md-3">
<i class="bi bi-calendar-event"></i> 12th Feb, 2022
</p>
<p class="col-5 col-md-3">
<i class="bi bi-clock"></i> 5:00 PM
</p>
</div>
<p class="card-text">
<small class="text-muted">
Prerequisites: Basics of Python, HTML, Bootstrap.
</small>
</p>
<div>
<a
class="btn btn-outline-info"
href="https://youtu.be/iCsRPjWO0bI"
target="_blank"
rel="noopener noreferrer"
>
<strong
><i class="bi bi-box-arrow-up-right"></i> Watch
Now
</strong>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#events"
data-bs-slide="prev"
>
<span
class="bi bi-arrow-left-circle-fill"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#events"
data-bs-slide="next"
>
<span
class="bi bi-arrow-right-circle-fill"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- Prizes Section -->
<section
id="prizes-section"
style="padding-bottom: 1.5rem; background-color: #d1e5dc"
>
<!-- Prizes -->
<section id="prizes">
<div class="container">
<div class="row" style="margin-bottom: 30px">
<div class="col-12 col-md-12">
<div class="section-heading-2">
<h4
class="h2-title text-center mb-5"
data-aos="fade-down"
style="margin-top: 40px"
>
HackVerse 3.0 Prizes
</h4>
</div>
</div>
</div>
<div class="row">
<div class="column" data-aos="fade-left">
<div class="card">
<div class="content">
<div class="front">
<span>2ND Prize</span>
<img
class="profile"
width="100%"
style="height: 200px; margin-top: 40px"
src="./img/prize_section_imgs/Asset 1.png"
alt="Neymar"
/>
<h2 class="profilee" width="100%">
<span>₹</span>35,000
</h2>
</div>
<div class="back from-left">
<div class="description">
<ul style="list-style-type: square">
<li>
Fundamnetals of Java and Java collections worth
<span>Rs. 2500<sup>*</sup></span>
</li>
<li>
DSA Using Python Programming-Self Paced worth
<span>Rs. 2500<sup>*</sup></span>
</li>
<li>
Android Development for Beginners-Self Paced worth
<span>Rs.2500<sup>*</sup></span>
</li>
<li>
Leading Learners Expansion Packs (valued at $100USD
each)
</li>
<li>Digital Ocean credits worth $2000</li>
</ul>
<p style="align-items: flex-end">
<small>
<sup>*</sup>Any one of the listed GFG Course will be
offered
</small>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="column" style="position: relative; top: -20px" data-aos="fade-up">
<div class="card">
<div class="content">
<div class="front">
<span>1ST Prize</span>
<img
class="profile"
style="height: 240px"
width="100%"
src="./img/prize_section_imgs/Asset 2.png"
alt="Prize1"
/>
<h2 class="profilee" width="100%">
<span>₹</span>50,000
</h2>
</div>
<div class="back from-bottom">
<div class="description">
<ul style="list-style-type: square">
<li>
C++ST-Self-Paced Course worth
<span>Rs.3,000<sup>*</sup></span>
</li>
<li>
OS DBMS CN for SDE Interview Preparation worth
<span>Rs.3,000<sup>*</sup></span>
</li>
<li>
Data Structures and Algorithm Foundation-Self Paced
worth <span>Rs.3,500<sup>*</sup></span>
</li>
<li>
Leading Learners Expansion Packs (valued at $100USD
each)
</li>
<li>Digital Ocean credits worth $2000</li>
</ul>
<p style="align-items: flex-end">
<small>
<sup>*</sup>Any one of the listed GFG Course will be
offered
</small>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="column" data-aos="fade-right">
<div class="card">
<div class="content">
<div class="front">
<span>3rd Prize</span>
<img
class="profile"
width="100%"
style="height: 240px"
src="./img/prize_section_imgs/Asset 3.png"
alt="3rd prize"
/>
<h2 class="profilee" width="100%">
<span>₹</span>25,000
</h2>
</div>
<div class="back from-right">
<div class="description">
<ul style="list-style-type: square">
<li>
Database Management System For Gate-Self Paced worth
<span>Rs. 1500<sup>*</sup></span>
</li>
<li>
Complier Design for GATE-Self Paced worth
<span>Rs.1500<sup>*</sup></span>
</li>
<li>
Operating System for GATE-Slef Paced worth
<span>Rs.1500<sup>*</sup></span>
</li>
<li>
Leading Learners Expansion Packs (valued at $100USD
each)
</li>
<li>Digital Ocean credits worth $2000</li>
</ul>
<p style="align-items: flex-end">
<small>
<sup>*</sup>Any one of the listed GFG Course will be
offered
</small>
</p>
</div>
</div>
</div>