forked from ieee-mace/hack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1035 lines (898 loc) · 42.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 Tags ========== -->
<meta charset="UTF-8">
<meta name="description" content=".hack(); -24 hours Hackathon">
<meta name="keywords" content=".hack(); , Hackathon , Code">
<meta name="author" content="MaceHub">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ========== Title ========== -->
<title> .hack();</title>
<!-- ========== Favicon Ico ========== -->
<link rel="icon" href="assets/img/logo.ico">
<!-- ========== STYLESHEETS ========== -->
<!-- Bootstrap CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Fonts Icon CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/et-line.css" rel="stylesheet">
<link href="assets/css/ionicons.min.css" rel="stylesheet">
<!-- Carousel CSS -->
<link href="assets/css/owl.carousel.min.css" rel="stylesheet">
<link href="assets/css/owl.theme.default.min.css" rel="stylesheet">
<!-- Animate CSS -->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
</head>
<body>
<div class="loader">
<div class="loader-outter"></div>
<div class="loader-inner"></div>
</div>
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<!-- Uncomment below if you prefer to use a text logo -->
<!-- <h1><a href="#main">C<span>o</span>nf</a></h1>-->
<a href="#home" class="scrollto"><img src="assets/img/logo.png" alt=".hack();" title=""></a>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#speaker">Speakers</a></li>
<li><a href="#prize">Prize</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#venue">Venue</a></li>
<!-- <li><a href="#gallery">Gallery</a></li> -->
<li><a href="#faq">FAQ</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#contact">Contact</a></li>
<li class="buy-tickets"><a href="#idea">Submit Profile</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--cover section slider -->
<section id="home" class="home-cover">
<div class="cover_slider owl-carousel owl-theme">
<div class="cover_item" style="background: url('assets/img/bg/slider3.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<h2 class="cover-title">
Prepare yourself for
</h2>
<img class="logo" src="assets/img/writing.png" alt=".hack();">
<p class="cover-date">
1-2 February 2020 - Ernakulam, Kerala.
</p>
<div class=" btn" >
<a href="#idea" class="scrollto"><button id="devfolio-apply-now2"><svg class="logo" xmlns="http://www.w3.org/2000/svg" fill="#fff"viewBox="0 0 115.46 123.46" style="height:24px;width:24px;margin-right:8px"><path d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z" /><path d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z"/></svg>Apply with Devfolio</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider1.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-left">
<h2 class="cover-title">
Prepare yourself for
</h2>
<img class="logox" src="assets/img/writing.png" alt=".hack();">
<p class="cover-date">
1-2 February 2020 - Ernakulam, Kerala.
</p>
<div class=" btn" >
<a href="#idea" class="scrollto"><button id="devfolio-apply-now2"><svg class="logo" xmlns="http://www.w3.org/2000/svg" fill="#fff"viewBox="0 0 115.46 123.46" style="height:24px;width:24px;margin-right:8px"><path d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z" /><path d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z"/></svg>Apply with Devfolio</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider2.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<h2 class="cover-title">
Prepare yourself for
</h2>
<img class="logo" src="assets/img/writing.png" alt=".hack();">
<p class="cover-date">
1-2 February 2020 - Ernakulam, Kerala.
</p>
<div class=" btn" >
<a href="#idea" class="scrollto"><button id="devfolio-apply-now2"><svg class="logo" xmlns="http://www.w3.org/2000/svg" fill="#fff"viewBox="0 0 115.46 123.46" style="height:24px;width:24px;margin-right:8px"><path d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z" /><path d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z"/></svg>Apply with Devfolio</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--cover section slider end -->
<!--event info -->
<section class="pt100 pb100 wow fadeInUp">
<div class="container">
<div class="row justify-content-center">
<div class="col-6 col-md-3 ">
<div class="icon_box_two">
<i class="ion-ios-calendar-outline"></i>
<div class="content">
<h5 class="box_title">
DATE
</h5>
<p>
1-2 February 2020
</p>
</div>
</div>
</div>
<div class="col-6 col-md-3 ">
<div class="icon_box_two">
<i class="ion-ios-location-outline"></i>
<div class="content">
<h5 class="box_title">
location
</h5>
<p>
Integrated Startup Complex, Ernakulam.
</p>
</div>
</div>
</div>
<div class="col-6 col-md-3 ">
<div class="icon_box_two">
<i class="ion-ios-person-outline"></i>
<div class="content">
<h5 class="box_title">
speakers
</h5>
<p>
John Mathew ,Dr. Mikhail Zenchenkov and more
</p>
</div>
</div>
</div>
<div class="col-6 col-md-3 ">
<div class="icon_box_two">
<i class="ion-ios-pricetag-outline"></i>
<div class="content">
<h5 class="box_title">
tickets
</h5>
<p>
Free
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--event info end -->
<!--event countdown -->
<section class="bg-img pt70 pb70 wow fadeInUp" style="background-image: url('assets/img/bg/bg-img.png');">
<div class="overlay_dark"></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<h4 class="mb30 text-center color-light">Counter until the big event</h4>
<div class="countdown"></div>
</div>
</div>
</div>
</section>
<!--event count down end-->
<!--about the event -->
<section id="about" class="pt100 pb100 wow fadeInUp">
<div class="container">
<div class="section-header">
<h2 >
About the Event
</h2>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-6">
<p class="text-black">
.hack(); devises to bring bright minds from across the country to compete and build solutions for problems they met within day-to-day lives.<br><br>
We aim at creating opportunities that students generally lack, real-life working experience, rapid problem-solving skills, thinking in terms of product and engaging in a team to support and grow and finally, the ultimate exposure to the industry.
</p>
</div>
<div class="col-12 col-md-6">
<p class="text-black">
Come devise viable ideas to solve real-life problems.<br>Use this platform for the application of software and hardware technologies you have learned, get along with industry professionals and gain the experience they share!
</p>
</div>
</div>
<!--event features-->
<div class="row justify-content-center mt30">
<div class="col-12 col-md-3 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-mic"></i>
<div class="content">
<h4>Multitude of Speakers</h4>
<p>
We try to bring the best speakers from industry, who can share the light of experience with our participants.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-3 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-rocket"></i>
<div class="content">
<h4>Coding Marathon</h4>
<p>
It's a marathon where code is your tool and product is your finish line. Run, run, run.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-3 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-bullhorn"></i>
<div class="content">
<h4>Three Prize Winners</h4>
<p>
Cash prizes are alloted for the best 3 teams and many more surprise prizes awaits the particpants.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-3 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-clock"></i>
<div class="content">
<h4>24hrs of Developing</h4>
<p>
All you have is 24-hours to realize your idea and bag the ultimate prize.
</p>
</div>
</div>
</div>
</div>
<!--event features end-->
</div>
</section>
<!--about the event end -->
<!--speaker section-->
<section id="speaker" class="pb100 wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>
Our Speakers
</h2>
<p>Here are some of our speakers</p>
</div>
<div class="row justify-content-center no-gutters">
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/IMG_3792.jpg" alt="speaker name">
<div class="info_box">
<h5 class="name">John Mathew</h5>
<p class="position">Co-Founder & CEO</p>
<h5 class="company">Riafy Technologies</h5>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/mike1.jpg" alt="speaker name">
<div class="info_box">
<h5 class="name">Dr. Mikhail Zenchenkov</h5>
<p class="position">Head of Program</p>
<h5 class="company">Brinc India</h5>
</div>
</div>
</div>
</div>
<!-- <div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/unknown.jpg" alt="speaker name">
<div class="info_box">
<h5 class="name">TBA</h5>
<p class="position">...</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/unknown.jpg" alt="speaker name">
<div class="info_box">
<h5 class="name">TBA</h5>
<p class="position">...</p>
</div>
</div>
</div>
</div> -->
</div>
</section>
<!--speaker section end -->
<!--Price section-->
<section id="prize" class="pb100 wow fadeInUp">
<div class="container">
<div class="section-header mb50">
<h2>
Prizes
</h2>
<p>Grab the opportunity to win exciting prizes</p>
</div>
<div class="row justify-content-center">
<div class="col-md-4 col-12">
<div class="price_box first">
<div class="price_header">
<h4>
First Prize
</h4>
<br>
<h2>
₹15,000
</h2>
</div>
<div class="price_tag">
<!-- 85 <sup>$</sup> -->
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="price_box second" >
<div class="price_header">
<h4>
Second Prize
</h4>
<br>
<h2>
₹8,000
</h2>
</div>
<div class="price_tag">
<!-- 65 <sup>$</sup> -->
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="price_box third">
<div class="price_header">
<h4>
Third Prize
</h4>
<br>
<h2>
₹5,000
</h2>
</div>
<div class="price_tag">
<!-- 95 <sup>$</sup> -->
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="price_box special">
<p>Best Project Built on Ethereum</p>
<h4>₹10,000</h4>
</div>
</div>
<div class="col-md-6 col-12">
<div class="price_box special">
<p>Best Project Built on Ethereum and Matic</p>
<h4>₹15,000</h4>
</div>
</div>
<div class="col-md-6 col-12">
<div class="price_box special">
<h3>Top 5 team</h3>
<p>Award Letters From Wolfram For Each Member in Team</p>
<h4>Worth $375.00</h4>
</div>
</div>
<div class="col-md-6 col-12">
<div class="price_box special">
<h3>iBeacon Project</h3>
<p>Best Project Developed Using iBeacon Given By Pinmicro</p>
<h4>Special Prize</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<!--price section end -->
<!--Submit Your Idea-->
<section id="idea" class="bg-img pt100 pb100" style="background-image: url('assets/img/bg/tickets.png');">
<div class="container">
<div class="section-header mb30">
<h2 class="title color-light">
Submit Your Profile
</h2>
</div>
<div class="row justify-content-center align-items-center">
<div class="col-md-9 text-md-left text-center color-light">
Here is the portal to submit your profile and complete the first phase of registration. Here you need to submit your Devfolio profile for evaluation. Make sure you have filled all the fields perfectly and has shared the links to you valid handles like GitHub, previous works and your Awards/Achievements.<br> Your selection will be based on the evaluation of your team strength and the skills you put forward.<br>Check out the FAQ section for more details about the event.
</div>
<div class="col-md-3 text-md-right text-center">
<div class=" btn" >
<button id="devfolio-apply-now"><svg class="logo" xmlns="http://www.w3.org/2000/svg" fill="#fff"viewBox="0 0 115.46 123.46" style="height:24px;width:24px;margin-right:8px"><path d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z" /><path d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z"/></svg>Apply with Devfolio</button>
</div>
</div>
</div>
</div>
</section>
<!--Submit Your Idea section end-->
<!--==========================
Schedule Section
============================-->
<section id="schedule" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header mb50">
<h2 class="title">
Event Schedule
</h2>
<p>Here is our event schedule</p>
</div>
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-toggle="tab">Day 1</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-toggle="tab">Day 2</a>
</li>
</ul>
<h3 class="sub-heading">Plan accordingly!!!</h3>
<div class="tab-content row justify-content-center">
<!-- Schdule Day 1 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2"><time>08:00 AM</time></div>
<div class="col-md-10">
<h4>Registration</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>9:30 AM</time></div>
<div class="col-md-10">
<h4>Inaugration and Keynote <span> TBA</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:30 AM</time></div>
<div class="col-md-10">
<h4>Hack Begins <span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:30 AM</time></div>
<div class="col-md-10">
<h4>LUNCH<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>01:30 PM</time></div>
<div class="col-md-10">
<h4>First Round Evaluation<span> Hack Continues</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>05:00 PM</time></div>
<div class="col-md-10">
<h4>TEA <span> Networking oppurtunities!</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>05:30 PM</time></div>
<div class="col-md-10">
<h4>Hack Continues.<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 PM</time></div>
<div class="col-md-10">
<h4>DINNER<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 PM</time></div>
<div class="col-md-10">
<h4>POWER MENTORING.<span> Hack continues...</span></h4>
</div>
</div>
</div>
<!-- End Schdule Day 1 -->
<!-- Schdule Day 2 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-2">
<div class="row schedule-item">
<div class="col-md-2"><time>00:00 AM</time></div>
<div class="col-md-10">
<h4>Recreational Activites<span> Lots of it!</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>08:00 AM</time></div>
<div class="col-md-10">
<h4>BREAKFAST <span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 AM</time></div>
<div class="col-md-10">
<h4>Hack Continues <span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:30 AM</time></div>
<div class="col-md-10">
<h4>Hack Ends <span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:30 AM</time></div>
<div class="col-md-10">
<h4>Final Evaluation <span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:30 PM</time></div>
<div class="col-md-10">
<h4>RESULTS <span> Closing Ceremony</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>01:30 PM</time></div>
<div class="col-md-10">
<h4>Event Dispersal <span></span></h4>
</div>
</div>
<!-- End Schdule Day 2 -->
</div>
</div>
</section>
<!--schedule section ends-->
<!--==========================
Venue Section
============================-->
<section id="venue" class="pb100 pt100 wow fadeInUp">
<div class="container-fluid">
<div class="container">
<div class="section-header mb50">
<h2 class="title">
Event Venue
</h2>
</div>
</div>
<div class="row no-gutters">
<div class="col-lg-6 venue-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d1964.2649715675814!2d76.354551!3d10.055592!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc8a74d3745a2a0d6!2sKerala%20Technology%20Innovation%20Zone%20KTIZ!5e0!3m2!1sen!2sin!4v1580497268332!5m2!1sen!2sin" width="600" height="450" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</div>
<div class="col-lg-6 venue-info">
<div class="row justify-content-center">
<div class="col-11 col-lg-8">
<h3>Integrated Startup Complex</h3>
<p>Experience 24-hours of fun filled developing experience at South Asia's largest innovation hub, which is also home to a multitude of startups in Kerala in the growing as well as grown up stage.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
F.A.Q Section
============================-->
<section id="faq" class="section-with-bg-faq wow fadeInUp">
<div class="container">
<div class="section-header mb50">
<h2 class="title">
FAQ
</h2>
</div>
<div class="row justify-content-center">
<div class="col-lg-6">
<ul id="faq-list">
<li>
<a data-toggle="collapse" class="collapsed" href="#faq1">Who can Participate? <i class="fa fa-minus-circle"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p>
Everyone who is a student at the time of event can participate, irrespective of your course, stream or branch. If you are below 18 years of age, you need to bring parental consent.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed">How does application process work? <i class="fa fa-minus-circle"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
We’re looking for people who "do"! Folks who are passionate enough to work on crazy world-changing ideas. Tell us what makes you apply to .hack(); , what excites you, accomplishments you are proud of and whatever else you think can strengthen your chances of acceptance. We’ll get to know more about your abilities from the past projects, GitHub profile, participation/awards in other hackathons. </p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq3" class="collapsed">Can we apply as a team? <i class="fa fa-minus-circle"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
Yes! This hackathon is strictly a team competition. We believe that you’re stronger as a team than you are apart. You can join or create a team once you've started an individual application. </p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq4" class="collapsed">What about Hardware? <i class="fa fa-minus-circle"></i></a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p>
If you are doing a hardware hack and have a specific hardware in mind, bring it with you.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq5" class="collapsed">When will the application close? <i class="fa fa-minus-circle"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p>
The application portal will be closed on January 15th at 11:59pm IST. We evaluate applications on a rolling basis and acceptances will be sent every weekend via email. The sooner you apply, the better chances you have of acceptance. Once accepted, you’ll have three days to confirm your attendance.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq6" class="collapsed">How much does it cost? <i class="fa fa-minus-circle"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p>
Zero. Zip. Zilch. Nada. Nothing. Admission to .hack(); is completely free. We'll provide you with a weekend's worth of schwag, meals, drinks, snacks.
</p>
</div>
</li>
</ul>
</div>
<div class="col-lg-6">
<ul id="faq-list">
<li>
<a data-toggle="collapse" href="#faq7" class="collapsed">How big can a team be? <i class="fa fa-minus-circle"></i></a>
<div id="faq7" class="collapse" data-parent="#faq-list">
<p>
You can form teams of up to 5 people. Most teams aim to have a mix of people with both design and developer skills. </p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq8" class="collapsed">What do I need to bring on the day of hackathon? <i class="fa fa-minus-circle"></i></a>
<div id="faq8" class="collapse" data-parent="#faq-list">
<p>
A valid school/college issued photo ID, laptop, phone, chargers, specific hardware for you hack, any sleeping equipment you might want and a geeky t-shirt!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq9" class="collapsed">What do I get by attending .hack();? <i class="fa fa-minus-circle"></i></a>
<div id="faq9" class="collapse" data-parent="#faq-list">
<p>
Pretty much everything from socializing with fellow hacker community to internship/job offers from the coolest tech companies. And yeah we’ll have cash prizes around 1000$ for you to grab. Most of all, you will gain an unparalleled learning experience and memories for a lifetime!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq10" class="collapsed">How does the judging work? <i class="fa fa-minus-circle"></i></a>
<div id="faq10" class="collapse" data-parent="#faq-list">
<p>
A panel of some of the biggest names in tech will evaluate hacks based on creativity, technical difficulty, design, and usefulness. The top 5 overall projects will demo what they have built in front of all of .hack(); during our closing ceremonies. New judges will be announced on a rolling basis on Twitter and Instagram, so make sure to follow us.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq11" class="collapsed">Can I start working on the project before the event?<i class="fa fa-minus-circle"></i></a>
<div id="faq11" class="collapse" data-parent="#faq-list">
<p>
No. In the interest of fairness, students should not be working on their projects before .hack(); begins and we do not allow participants to work on pre-existing projects. However, you can start thinking of ideas and familiarize yourself with all the tools and technologies you intend to use beforehand!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq12" class="collapsed">404: Question not found!!! <i class="fa fa-minus-circle"></i></a>
<div id="faq12" class="collapse" data-parent="#faq-list">
<p>
If you have any other questions or concerns, just send us a #tweet at <a class="ancor" href="https://twitter.com/MaceSb">@MaceSb</a> or reach out to us via email at <br><a class="ancor" href="mailto:[email protected]"> [email protected]</a>
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!--brands section -->
<section id="sponsors" class="bg-gray pt100 pb100 wow fadeInUp">
<div class="container">
<div class="section-header mb50">
<h2>
our partners
</h2>
</div>
<div class="section-subheader">
<h3 >Main Sponsors</h3>
</div>
<div class="cover_slider owl-carousel" >
<div class="brand_item text-center">
<a href="https://pinmicro.com/en/index.html"><img src="assets/img/brands/pinmicro.png" alt="brand"></a>
</div>
</div>
<div class="section-subheader">
<h3 >Title Sponsors</h3>
</div>
<div class="cover_slider owl-carousel" >
<div class="brand_item text-center">
<a href="https://devfolio.co/"><img src="assets/img/brands/devfolio.png" alt="brand"></a>
</div>
</div>
<div class="section-subheader">
<h3 >Community Partners</h3>
</div>
<div class="brand_carousel owl-carousel" >
<div class="brand_item text-center">
<a href="https://www.ieee.org"><img src="assets/img/brands/ieee_logo.png" alt="brand"></a>
</div>
<div class="brand_item text-center">
<a href="https://kuttycoders.in"><img src="assets/img/brands/kuttycoderslogo.png" alt="brand"></a>
</div>
<div class="brand_item text-center">
<a href="https://studentpartners.microsoft.com/"><img src="assets/img/brands/msp1.png" alt="brand"></a>
</div><div class="brand_item text-center">
<a href="https://studentpartners.microsoft.com/"><img src="assets/img/brands/msp2.png" alt="brand"></a>
</div>
</div>
<div class="section-subheader">
<h3 >Media Partners</h3>
</div>
<div class="cover_slider owl-carousel" >
<div class="brand_item text-center">
<a href="https://www.youtube.com/channel/UCpr-AwJ4AyzQSupU9HuFWOg"><img src="assets/img/brands/safeonnet.png" alt="brand"></a>
</div>
</div>
<div class="section-subheader">
<h3 >Sponsors</h3>
</div>
<div class="brand_carousel owl-carousel" >
<div class="brand_item text-center">
<a href="https://matic.network/"><img src="assets/img/brands/matic.png" alt="brand"></a>
</div>
<div class="brand_item text-center">
<a href="https://github.com/"><img src="assets/img/brands/github.png" alt="brand"></a>
</div>
<div class="brand_item text-center">
<a href="https://www.gatsbyjs.org/"><img src="assets/img/brands/gatsby.png" alt="brand"></a>
</div>
<div class="brand_item text-center">
<a href="https://www.wolfram.com/"><img src="assets/img/brands/wolfram.png" alt="brand"></a>
</div>
<div class="brand_item text-center">
<a href="https://tenorhut.com/"><img src="assets/img/brands/tenorhut_logo.png" alt="brand"></a>
</div>
</div>
</div>
</section>
<!--brands section end-->
<!--footer start -->
<footer>
<section id="contact" class="section-bg wow fadeInUp">
<div class="container">
<div class="section-header mb50">
<h2 class="title_contact" style="padding-bottom: 20dp;">
Contact Us
</h2>
</div>
<div class="row contact-info">
<div class="col-md-4">
<div class="contact-address">
<i class="ion-ios-location-outline"></i>
<h3>Address</h3>
<address>IEEE MACE SB, </address>
<address>Mar Athanasius College of Engineering, Kothamangalam, </address>
<address>Kerala - 686 666</address>
</div>
</div>
<div class="col-md-4">
<div class="contact-phone">
<i class="ion-ios-telephone-outline"></i>
<h3>Phone Number</h3>
<p><a href="tel:+919188168223">+91 91881 68223</a></p>
<p><a href="tel:+919188209053">+91 91882 09053</a></p>
</div>
</div>
<div class="col-md-4">
<div class="contact-email">
<i class="ion-ios-email-outline"></i>
<h3>Email</h3>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</div>
</div>
</section><!-- #contact -->
<div class="copyright_footer">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-12">
<p>Developed in association with <a href="http://macehub.in" target="_blank">MACEHUB</a></p>
</div>
<div class="footer-contact">
<div class="social-links">
<a href="https://twitter.com/MaceSb" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/ieeemace/" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/ieee_mace_sb/" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="mailto:[email protected]" class="email"><i class="fa fa-envelope-o"></i></a>
<a href="https://www.linkedin.com/company/ieee-student-branch-mace" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="col-12 col-md-6 ">
<ul class="footer_menu">
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#speaker">Speakers</a>
</li>
<li>
<a href="#schedule">Schedule</a>
</li>
<li>
<a href="#faq">FAQ</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
<li>
<a href="coc.html">Code of Conduct</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<!--footer end -->
<script>
document.addEventListener('DOMContentLoaded', function () {
let devfolioOptions = {
buttonSelector: '#devfolio-apply-now',
key: 'hackmacehub',
}
let script = document.createElement('script');