-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_LOCAL_1816.html
1098 lines (950 loc) · 45.2 KB
/
index_LOCAL_1816.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>
<head>
<!-- useful meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"
content="width=device-width,initial-scale=.5,minimum-scale=.5,maximum-scale=1,user-scalable=no">
<meta name="description" content="An event hosted by MHSSCE to promote the programming culture">
<meta name="keywords" content="hackathon">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#212121">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#212121">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#212121">
<!-- title -->
<title>ERR_404 4.0 | Hackathon</title>
<!-- favicon -->
<link rel="icon" type="image/png" href="assets/favicon.png">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Materialize CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.min.css">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans|Oswald" rel="stylesheet">
<!--Slick for slider-->
<link rel="stylesheet" type="text/css" href="slick/slick.css" />
<!-- Add the new slick-theme.css if you want the default styling-->
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css" />
<!-- Font Awesome -->
<link crossorigin="anonymous" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"
integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" rel="stylesheet">
<!-- Custom Stylesheet -->
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" href="style.css">
<style>
a[href^=tel] {
color: inherit;
text-decoration: none;
}
@font-face {
font-family: Clip;
src: url("https://acupoftee.github.io/fonts/Clip.ttf");
}
body {
background-color: #212121;
background-image: linear-gradient(335deg, #212121 23px, transparent 23px),
linear-gradient(155deg, #212121 23px, transparent 23px),
linear-gradient(335deg, #212121 23px, transparent 23px),
linear-gradient(155deg, #212121 23px, transparent 23px);
background-size: 58px 58px;
background-position: 0px 2px, 4px 35px, 29px 31px, 34px 6px;
}
.sign {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
width: 50%;
height: 50%;
background-image: radial-gradient(ellipse 50% 35% at 50% 50%,
#212121,
transparent);
transform: translate(-50%, -50%);
letter-spacing: 2px;
left: 50%;
top: 50%;
font-family: "Clip";
text-transform: uppercase;
font-size: 6em;
color: #67d861;
text-shadow: 0 0 0.6rem #67d861, 0 0 1.5rem #67d861,
-0.2rem 0.1rem 1rem #67d861, 0.2rem 0.1rem 1rem #67d861,
0 -0.5rem 2rem #67d861, 0 0.5rem 3rem #67d861;
animation: shine 2s forwards, flicker 3s infinite;
}
@keyframes blink {
0%,
22%,
36%,
75% {
color: #67d861;
text-shadow: 0 0 0.6rem aqua, 0 0 1.5rem aqua,
-0.2rem 0.1rem 1rem aqua, 0.2rem 0.1rem 1rem aqua,
0 -0.5rem 2rem aqua, 0 0.5rem 3rem aqua;
}
28%,
33% {
color: #67d861;
text-shadow: none;
}
82%,
97% {
color: #67d861;
text-shadow: none;
}
}
.flicker {
animation: shine 2s forwards, blink 3s 2s infinite;
}
.fast-flicker {
animation: shine 2s forwards, blink 10s 1s infinite;
}
@keyframes shine {
0% {
color: #67d861;
text-shadow: none;
}
100% {
color: #67d861;
text-shadow: 0 0 0.6rem aqua, 0 0 1.5rem aqua,
-0.2rem 0.1rem 1rem aqua, 0.2rem 0.1rem 1rem aqua,
0 -0.5rem 2rem aqua, 0 0.5rem 3rem aqua;
}
}
@keyframes flicker {
from {
opacity: 1;
}
4% {
opacity: 0.9;
}
6% {
opacity: 0.85;
}
8% {
opacity: 0.95;
}
10% {
opacity: 0.9;
}
11% {
opacity: 0.922;
}
12% {
opacity: 0.9;
}
14% {
opacity: 0.95;
}
16% {
opacity: 0.98;
}
17% {
opacity: 0.9;
}
19% {
opacity: 0.93;
}
20% {
opacity: 0.99;
}
24% {
opacity: 1;
}
26% {
opacity: 0.94;
}
28% {
opacity: 0.98;
}
37% {
opacity: 0.93;
}
38% {
opacity: 0.5;
}
39% {
opacity: 0.96;
}
42% {
opacity: 1;
}
44% {
opacity: 0.97;
}
46% {
opacity: 0.94;
}
56% {
opacity: 0.9;
}
58% {
opacity: 0.9;
}
60% {
opacity: 0.99;
}
68% {
opacity: 1;
}
70% {
opacity: 0.9;
}
72% {
opacity: 0.95;
}
93% {
opacity: 0.93;
}
95% {
opacity: 0.95;
}
97% {
opacity: 0.93;
}
to {
opacity: 1;
}
}
</style>
</head>
<body onload="loadProgress()">
<!-- Loader | starts-->
<div id="loader" class="valign-wrapper grey darken-4">
<div class="row">
<div class="col s12">
<center>
<div class="anim"></div>
<div class="progress" style="background: #5a5a5a">
<div class="indeterminate" style="color: #67d861; background-color: #67d861;"></div>
</div>
<p class="light-heading flow-text">Loading...</p>
</center>
</div>
</div>
</div>
<!-- Loader | ends -->
<!-- main body | starts -->
<div id="main" class="grey lighten-5 glove">
<!-- Nav bar section -->
<div class="navbar--container navbar--icon sticky" id="nav--sticky">
<div class="navbar--title">
<h4>err_404 4.0</h4>
<img src="assets/favicon.png" alt="" style="width: 20px; height: 20px;">
</div>
<div class="nb-icon">
<i class="fa fa-bars"></i>
</div>
</div>
<div class="nav--open close sticky">
<div class="nav--open-title inline">explore<i class="fa fa-times nav--open-icon"></i></div>
<div class="nav--open-menu">
<a href="index.html">Home</a>
<a href="./registration.html">Register</a>
<a href="hackathons.html">Hackathons</a>
<a href="sponsors.html">Past Sponsors</a>
<a href="index.html#rules-section">Rules</a>
<a href="index.html#guidelines-section">Guidelines</a>
<a href="index.html#faq-section">FAQs</a>
</div>
</div>
<div class="carousel carousel-slider center">
<!-- <div class="carousel-fixed-item center">-->
<!-- <a class="btn waves-effect white grey-text darken-text-2">button</a>-->
<!-- </div>-->
<div class="carousel-item valign-wrapper center-align " href="#one!" style="background-color: white">
<img src="./images/logo_anim5.gif" style="width: auto !important; margin-top: 100px; height: 400px">
</div>
<!-- <div class="carousel-item amber white-text" href="#two!">-->
<!-- <h2>Second Panel</h2>-->
<!-- <p class="white-text">This is your second panel</p>-->
<!-- </div>-->
<!-- <div class="carousel-item green white-text" href="#three!">-->
<!-- <h2>Third Panel</h2>-->
<!-- <p class="white-text">This is your third panel</p>-->
<!-- </div>-->
<!-- <div class="carousel-item blue white-text" href="#four!">-->
<!-- <h2>Fourth Panel</h2>-->
<!-- <p class="white-text">This is your fourth panel</p>-->
<!-- </div>-->
</div>
<!-- landing page section -->
<!-- <div id="landing-section" class="container-fluid section valign-wrapper grey lighten-5 scrollspy"-->
<!-- style="margin-top: 0; margin-bottom: 0" hidden>-->
<!-- <div class="row center">-->
<!-- <div class="col s16 m16 l16">-->
<!-- <div class="landing-title"><img src="./assets/dino_4.0_noloop.gif">-->
<!-- </div>-->
<!-- <br>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="row">
<div class="col m3 l2">
<img class="landing-dino" src="./assets/favicon.png">
<br>
</div>
<div class="col m3 l2"></div>
<div class="col m3 l2"></div>
</div> -->
<!-- </div>-->
<!-- <div class="row container center">
<div class="col s12 m12 l4 "></div>
<div class="col s12 m12 l4 glove">
<a id="register" class="btn waves-effect waves-teal" href="./shortlisted_teams.html">
<h5>Shortlisted Teams</h4>
</a>
</div>
<div class="col s12 m12 l4 "></div>
</div> -->
<!-- Timer -->
<div class="grey darken-4 countdown">
<div class="row center" style="margin-bottom: 0;">
<!-- TODO: Change TEXT -->
<h1 class="countdown-title light-para" id="countdown-text">Err404 4.0 starts in</h1>
</div>
<div class="row center">
<div class="col s12 m12 l2 light-heading">
<!-- <h3>ERR_404 4.0</h3> -->
</div>
<div class="col m3 l2 ">
<span class="countdown-amount light-heading" id="day"></span>
<h3 class="countdown-title light-para">Days</h3>
</div>
<div class="col m3 l2 ">
<span class="countdown-amount light-heading" id="hour"></span>
<h3 class="countdown-title light-para">Hours</h3>
</div>
<div class="col m3 l2 ">
<span class="countdown-amount light-heading" id="min"></span>
<h3 class="countdown-title light-para">Mins</h3>
</div>
<div class="col m3 l2 ">
<span class="countdown-amount light-heading" id="sec"></span>
<h3 class="countdown-title light-para">Secs</h3>
</div>
</div>
</div>
<!-- About -->
<div id="about-us-section" class="container-fluid section grey darken-4 scrollspy valign-wrapper">
<div class="side-gfx"></div>
<div class="container row ">
<div class="col s12">
<h2 class="center light-heading">What is ERR_404 4.0?</h2>
<p class="light-para flow-text" style="text-align: justify;">
ERR_404 4.0 is the fourth iteration of 24hrs State Level Hackathon organised by Programmers
Club
of Computer
Department of M. H. Saboo Siddik College of Engineering <br> <br>
We call out all the cybernerds to come forth, compile your minds and execute your ideas in a
competitive environment.
<br> The hackathon will run across the weekend which offers students the chance to work in
groups,
brainstorm ideas, and
build a working prototype before the time limit!
<br> Whether it's your first hackathon, or your 50th, we would love to see students of all
skill
levels
and from all colleges
come along for a weekend of creativity, collaboration and coding.
<br> Godspeed!
</p>
</div>
</div>
</div>
<!-- Domains -->
<!-- //TODO: add aniamtions to the domain icons -->
<div id="domains-section" class="container-fluid section grey lighten-5 scrollspy valign-wrapper">
<div class="container">
<h2 class="center dark-heading">Domains</h2>
<br>
<br>
<div class="row">
<!--Machine Learning-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/ml_icon.png">
<h5 class="dark-heading">Machine Learning</h5>
<p class="content-font-size flow-text" style="text-align: justify;">Machine learning is a type
of artificial intelligence
(AI) that provides computers with the ability to learn without being explicitly
programmed.
Machine learning focuses on the development of computer programs that can change when
exposed to new data. </p>
</div>
<!--Web Development-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/web_icon.png">
<h5 class="dark-heading">Web Development</h5>
<p class="content-font-size flow-text" style="text-align: justify;">Web development is the work
involved in developing a
web
site for the Internet or an intranet. It can range from developing a simple single
static
page of plain text to complex web-based internet applications, electronic businesses,
and
social network services.</p>
</div>
<!--Cloud Computing-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/cloud_icon.png">
<h5 class="dark-heading">Cloud Computing</h5>
<p class="content-font-size flow-text" style="text-align: justify;">Cloud computing is the
on-demand availability of
computer
system resources, especially data storage and computing power, without direct active
management by the user. The term is generally used to describe data centers available to
many users over the Internet.</p>
</div>
<!--Big Data-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/big_data_icon.png">
<h5 class="dark-heading">Big Data</h5>
<p class="content-font-size flow-text" style="text-align: justify;">Big data analytics is the
process of examining large
and
varied
data sets -- i.e., big data -- to uncover hidden patterns,
unknown correlations, market trends, customer preferences and other useful information
that
can
help
organizations
make more-informed business decisions.</p>
</div>
<!--Networking And Security-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/networking_and_security_icon.png">
<h5 class="dark-heading">Networking And Security</h5>
<p class="content-font-size flow-text" style="text-align: justify;">Network security is a
specialized field in computer
networking
that involves securing a computer network infrastructure.
Explore the world of Networking Security and build an innovative product around it, or
find
any
unsolved/unknown bug.
Remember ETERNALBLUE?</p>
</div>
<!--App Development-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/app_icon.png">
<h5 class="dark-heading">App Development</h5>
<p class="content-font-size flow-text" style="text-align: justify;">Mobile app development is
the act or process by which
a
mobile app is developed for mobile devices, such as personal digital assistants,
enterprise
digital assistants or mobile
phones.
</p>
</div>
</div>
<br>
</div>
</div>
<!-- Prizes -->
<div id="prizes-section" class="container-fluid section grey darken-4 scrollspy ">
<div class="container row center">
<h2 class="center light-heading">Prizes</h2>
<br>
<div class="col s12 m6 l6">
<div class="trophy-container">
<div class="trophy"></div>
<div class="trophy-badge"></div>
</div>
<h4 class="center light-para">Prizes upto ₹40,000 for Top 3 teams</h4>
</div>
<div class="col s12 m6 l6">
<div class="trophy-container">
<div class="trophy"></div>
</div>
<h4 class='center light-para'>Special Prize for Female Hackers</h4>
</div>
<h4 class='center light-heading prizes-sub-heading col s12 m12 l12'>Goodies and Honourable Mentions
for
the
rest
of the hackers :)</h4>
</div>
</div>
<!-- Rules -->
<div id="rules-section" class="container-fluid section grey lighten-5 scrollspy valign-wrapper">
<div class="side-gfx"></div>
<div class="container">
<h2 class="center dark-heading">Rules and regulations!</h2>
<ul class="dark-heading flow-text"
style="justify-content: left;list-style-type: disc;text-decoration: dotted">
<ul class="dark-heading flow-text"
style="text-align: justify;list-style-type: disc;text-decoration: dotted;">
<li style="text-decoration: dashed;"> Teams can be anywhere from two to four members.</li>
<hr>
<li>To ensure a level field for all contestants, all
code,
design and assets must be created during the duration of the Hackathon.
</li>
<hr>
<li>You are, however, free to make plans, create wireframes, and brainstorm prior to the
event. You
are allowed to
use 3rd party services, APIs, open
source projects, libraries,
and frameworks.
</li>
<hr>
<li>There will be no
alcohol, smoking allowed
at the event. Behave professionally.
</li>
<hr>
<li>Remember that harassment and racist, sexist, or
exclusionary
jokes are
not appropriate
for this event*.
</li>
<hr>
<li>Attendees violating these rules may be asked to leave the Hackathon at the sole
discretion
of the Hackathon
organizers. Thank you for helping make this a welcoming, friendly event for all.
</li>
<hr>
</ul>
<p class="light-heading flow-text center">View the complete Rules here</p>
<br>
<!--Modal Trigger-->
<div class="row center">
<a href="#modal"
class="btn waves-effect waves-teal grey darken-4 light-heading glow-dark">Rules</a>
</div>
<div class="">
<!-- Modal Structure -->
<div id="modal" class="modal grey darken-4">
<div class="modal-content">
<h4 class="light-para center">Rules</h4>
<p class="time-font content-font-size" style="text-align: justify;">*Harassment includes
but is not limited to
offensive
verbal
or written comments related to gender, age, sexual orientation,
disability, physical appearance, body size, race, religion, deliberate
intimidation,
stalking,
following, harassing
photography or recording, sustained disruption of talks or other events,
inappropriate
physical
contact.
<br><br> If what you’re doing is making someone feel uncomfortable, that counts
as
harassment and is
enough reason to stop
doing it. Be careful and mindful of the words that you choose.
<br><br> Remember that exclusionary comments and hacks can be offensive to those
around
you.
Participants asked to stop any
harassing behavior are expected to comply immediately.
<br><br> Sponsors, judges, mentors, volunteers, organizers, and anyone else at
the event
are
also
expected to follow the same.
<br><br> In particular, attendees should not use sexualised images, activities,
or other
material
both in their hacks and
during the event. If a participant engages in harassing behavior, organizers may
take
any
action
they deem appropriate,
including warning the offender or expulsion from the event. If you are being
harassed,
notice
that someone else is
being harassed, or have any other concerns, please report about it to the
volunteers or
the
staffs.
</p>
</div>
<div class="modal-footer grey darken-4">
<a href="#!"
class="time-font modal-action modal-close waves-effect waves-teal btn-flat grey darken-4 light-heading glow-dark">Agree</a>
</div>
</div>
</div>
</ul>
</div>
</div>
<!-- Venue -->
<div id="venue-section" class="container-fluid section grey darken-4 scrollspy ">
<!--div class="container-->
<!--h2 class=" center light-heading">Venue</h2-->
<!--h3 class="center light-heading">hackfromhome</h3-->
<div class="sign" style="position: relative; margin-top: 50px; margin-bottom: -50px;">
<span class="fast-flicker">hack</span>from<span class="flicker">ho</span>me
</div>
<div class="center light-heading">
<img src="assets/venue_image.gif"
style=" border: 1px solid #67d861; border-radius: 4px; max-width: 100%; height: auto;">
</div>
</div>
<!-- Guidelines -->
<div id="guidelines-section" class="container-fluid section grey lighten-5 scrollspy valign-wrapper">
<div class="container flow-text dark-heading">
<h2 class="center dark-heading">General Guidelines</h2>
<p style="text-align: justify;">We are hopeful that you all will be very excited about the
ERR_404 4.0
Hackathon. To conduct this
event
smoothly
&
in a successful
manner. We would like you to follow the below guidelines:
<li>Please be present on time for the online onsite registration.</li>
<hr>
<li style="text-align: justify;">Keep valid college ID card by your side for verification.
Without
it, admission won't be
allowed.
</li>
<hr>
<li>Participants are expected to follow the formal/proper dress code.</li>
<hr>
<li style="text-align: justify;">The schedule is tentative. It may change a bit,so
participants are
expected to abide as per the
changed
schedule.
</li>
<hr>
<li>Upload your code on github and update it from time to time.</li>
<hr>
<li>Check your Internet connection, Camera and Audio prior to the start of Hackathon.</li>
<hr>
<li>Keep your Camera ON at every stage of Evaluation and presentation.</li>
<hr>
<!-- <li>Nobody will be allowed to leave the campus between 9:00PM and 6:00AM.</li> -->
<!-- <li>Vehicles will not be allowed to park in the campus.</li> -->
<!-- <li>It is necessary to get a signed copy of the undertaking. You can find it below.</li> -->
<li>The problem statements will be released two days before the event.</li>
<br>
</p>
<!-- <div class="row center time-font">
<a class="btn waves-effect waves-teal grey darken-4 light-heading glow-dark"
href="err_404_undertaking.pdf" download>ERR_404 4.0 Hackathon Undertaking</a>
</div> -->
</div>
<div class="side-gfx side-gfx-right"></div>
</div>
<!-- Schedule -->
<div id="schedule-section" class="container-fluid section grey darken-4 scrollspy valign-wrapper">
<div class="side-gfx"></div>
<div class="container">
<h2 class="center light-heading">Schedule</h2>
<h5 class="light-para">
Error 404! This Hackathon is under construction! We will inform you as soon as the schedule
is
decided.
<!-- Please bear in mind that it’s a hackathon schedule and things never go to plan, so please take the
end
time
with a pinch
of salt and allow for a bit of extra time for arrangements during the hackathon ¯\_(ツ)_/⁻ -->
</h5>
<br>
<!-- <div class="row center">
<a href="timeline.html"
class="btn waves-effect waves-teal grey darken-4 light-heading glow-light">Check
out
the Schedule here</a>
</div> -->
</div>
</div>
<!--FAQ-->
<div class="row grey lighten-5">
<div class="col m1"></div>
<div id="faq-section" class="container-fluid section col m10 s12 scrollspy">
<div class="container row">
<h2 class="center dark-heading">FAQ's</h2>
<br>
<div class="col l1 hide-on-med-and-down"></div>
<ul class="collapsible col l10 s12" data-collapsible="accordion">
<li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span> Who can participate?
</div>
<div class="collapsible-body">
<span class="flow-text">Anyone with a knack of programming and solving problems
can
participate.</span>
</div>
</li>
<li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span> How much does it cost?
</div>
<div class="collapsible-body">
<span class="flow-text">Absolutely nothing, except for hard work, dedication,
and
patience.</span>
</div>
</li>
<li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span> What should I bring?
</div>
<div class="collapsible-body">
<span class="flow-text">Due to the online nature of the hackathon, you don’t
have to
travel. Though enthusiasm and humor are always welcome.
</span>
</div>
</li>
<li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span> Where is it?
</div>
<div class="collapsible-body">
<span class="flow-text">From the safest and most comfortable place, your
home.</span>
</div>
</li>
<!-- <li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span>Will Jain Food be provided?
</div>
<div class="collapsible-body">
<span class="flow-text">Yes, food arrangements will be made for Jain Participants.</span>
</div>
</li> -->
<li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span>Is it compulsory that all members belong to same college?
</div>
<div class="collapsible-body">
<span class="flow-text">No it is not, you can form a team of students from
different
colleges. While registering you can either put the Team Leader's College or
mutually
decide.</span>
</div>
</li>
<!-- <li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span> Where will I sleep?
</div>
<div class="collapsible-body">
<span class="flow-text">We have sleeping area with matresses and pillows. You can bring
along sleeping bags & other stuff.</span>
</div>
</li> -->
</ul>
</div>
</div>
<div class="col m1"></div>
</div>
<!-- Sponsors -->
<div id="sponsors-section" class="container-fluid section grey darken-4 scrollspy prize-gfx valign-wrapper"
style="margin-top: 0; margin-bottom: 0">
<!-- <div class="side-gfx side-gfx-left"></div> -->
<div class="container">
<h2 class="center light-heading">Become Our Sponsor</h2>
<!-- <h3 class="center"
style="color: #fff; font-weight: 300; font-size: 30px;line-height: 1.5; letter-spacing: 2px;"> Not
sure ?
<br> Check Our
Past Sponsors!
</h3> -->
<h5 class="center light-para" style="line-height: 1.3; letter-spacing: 2px;">Not sure? <br>
Check
Our
Past Sponsors!</h5>
<div class="row center">
<a class="btn waves-effect waves-teal grey darken-4 light-heading glow-light" href="./sponsors.html"
target="_blank">
Check Out
</a>
</div>
<!-- <div class="row">
<h4 class="center light-para">Community Partners</h4>
<div class="col s12 m4 l4 ">
<a href="https://www.tcs.com/" target="_blank">
<center>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/tcs.png" class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.tcs.com/"
target="_blank">TCS</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="https://difference-engine.ai" target="_blank">
<center>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/difference-engine-logo-crop.png"
class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://difference-engine.ai/"
target="_blank">Difference Engine</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="https://www.neebal.com/" target="_blank">
<center>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/neebal.png" class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.neebal.com/"
target="_blank">Neebal</a>
</center>
</a>
</div>
</div> -->
</div>
</div>
<!-- Registration
<div id="registration-section" class="container-fluid section grey darken-4 scrollspy">
<div class="container-fluid row">
<h2 class="center light-heading">Interested in coming over?</h2>
</div>
<div class="container-fluid row">
<a id="register" class=" center btn waves-effect waves-teal grey darken-4 light-heading" href="#" style="text-align: center; width: 100%;">
Registrations
Openning Shortly!!
</a>
</div>
</div> -->
<!--Footer Section-->
<footer class="page-footer grey darken-4 ">
<div class="container ">
<div class="row">
<h2 class="center light-heading">Interested in coming over?</h2>
<div class="row center">
<a class="btn waves-effect waves-teal grey darken-4 light-heading glow-light"
href="./registration.html">
Register Now!!
</a>
</div>
</div>
<div class="row center light-para">
<!-- <div class="col l4 s12">