-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1503 lines (1419 loc) · 88.7 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="viewport" content="width=device-width, initial-scale=1.0">
<title>Innerve5.0</title>
<meta name=description content="Pune's Biggest Hackathon.">
<meta name=author content="Aman, Akash, Snehasis">
<meta name=keywords
content="Innerve, Innerve2k20, Innerve 2k21, Innerve5.0, Hackathon,Front-end, Freelancer, Developer, Designer">
<meta property=og:title content="Innerve2021">
<meta property=og:description content="Innerve 5.0 imparts you the platform to showcase your ideas and technical skills at a
recognized level. This is the perfect opportunity to get those breathtaking ideas out of
your astonishing minds and onto the computer screens. Coming again this year
Innerve brings you with more engrossing and strenuous problem statements than ever
before. So get ready for Innerve 5.0 to animate you with newer abstract, amazing
winnings, and a fun-packed experience.">
<meta property=og:url content="https://www.innerve24hrs.in/">
<meta property=og:image content="https://www.innerve.com/logo">
<meta property=og:image:width content=470>
<meta property=og:image:height content=246>
<meta property=og:site_name content="">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<!--scripts-->
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.min.js"
integrity="sha512-XKa9Hemdy1Ui3KSGgJdgMyYlUg1gM+QhL6cnlyTe2qzMCYm4nAZ1PsVerQzTTXzonUR+dmswHqgJPuwCq1MaAg=="
crossorigin="anonymous"></script>
<!--fevicon-->
<!-- Font Family -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap&subset=devanagari,latin-ext"
rel=stylesheet>
<link rel=icon type=image/png href="assets/img/logo.png">
<link rel=apple-touch-icon href=apple-touch-icon.png>
<link rel=apple-touch-icon sizes=72x72 href=apple-touch-icon-72x72.png>
<link rel=apple-touch-icon sizes=114x114 href=apple-touch-icon-114x114.png>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-188441075-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-188441075-2');
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-resource/1.2.1/vue-resource.min.js"></script>
<script defer async src="https://apply.devfolio.co/v2/sdk.js"></script>
</head>
<body id=body-element>
<canvas id="stars"></canvas>
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function () {
FB.init({
xfbml: true,
version: 'v9.0'
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Your Chat Plugin code -->
<div class="fb-customerchat" attribution="setup_tool" page_id="1018967011534840" theme_color="#007bff"
logged_in_greeting="Hi! Welcome to Pune's Biggest student driven Hackathon. How can we help you?"
logged_out_greeting="Hi! Welcome to Pune's Biggest student driven Hackathon. How can we help you?">
</div>
<!-- FB Chat Plugin ends -->
<div class=nav-main>
<div class=nav__content>
<ul class="nav__list active-nav-menu">
<li class=nav__list-item>
<a href=#navabout id="navItem" class="active-nav-menu stick-cursor"
onclick="addNavActive()">About</a>
</li>
<li class=nav__list-item>
<a href=#navtheme id="navItem" class="active-nav-menu stick-cursor"
onclick="addNavActive()">Themes</a>
</li>
<li class=nav__list-item>
<a href=#navfaq id="navItem" class="active-nav-menu stick-cursor" onclick="addNavActive()">FAQ</a>
</li>
<li class=nav__list-item>
<a href=#navprizes id="navItem" class="active-nav-menu stick-cursor"
onclick="addNavActive()">Prizes</a>
</li>
<li class=nav__list-item>
<a href=#navspeaker id="navItem" class="active-nav-menu stick-cursor"
onclick="addNavActive()">Speakers</a>
</li>
<li class=nav__list-item>
<a href=#navsponsors id="navItem" class="active-nav-menu stick-cursor"
onclick="addNavActive()">Sponsors</a>
</li>
<li class=nav__list-item>
<a href=#navcontact id="navItem" class="active-nav-menu stick-cursor"
onclick="addNavActive()">Contact</a>
</li>
</ul>
</div>
</div>
<header class="navigation-wrap cbp-af-header">
<div class="container-fluid anime-4">
<div class=row>
<div class="col align-self-center pr-0">
<div class="logo">
<a href=#top class=stick-cursor data-gal=m_PageScroll2id>
<img id="fav-logo-innerve" src=assets/img/logo.png alt=logo>
</a>
</div>
</div>
<div class="col-auto align-self-center pl-0" onclick="addNavActive()">
<div class=section>
<div class=nav-but-wrap>
<div class="menu-icon stick-cursor"></div>
</div>
</div>
</div>
</div>
</div>
</header>
<main>
<!-------------------------------------------------- Home Section ---------------------------------------------------------->
<div class="container-fluid mt-mb-5">
<div class="row justify-content-around">
<div class="col-11 row mt-md-5 pt-5">
<div class="col-12 col-md-6 p-0">
<img class="landing-logo" src=assets/img/logo-back1.svg alt=logo>
</div>
<div class="p-0 column home-mainbox-2">
<div class="col-md-12 p-0 m-0 home-box1 d-flex align-items-center justify-content-around">
Pune's Biggest Hackathon
</div>
<div class="col-md-12 home-box2 row p-0 m-0 justify-content-between">
<div class="col-12 col-md-6 p-0 m-0 mt-3">
<div class="p-0 m-0 home-box2-1 d-flex align-items-center justify-content-around">Idea
Pitching
</div>
<div class="p-0 m-0 home-box2-2 d-flex align-items-center justify-content-around">
5th - 28th Feb 2021</div>
</div>
<div class="col-md-6 col-12 p-0 m-0 mt-3 box-box">
<div class="p-0 m-0 home-box2-1 d-flex align-items-center justify-content-around">
24hrs Hackathon</div>
<div class="p-0 m-0 home-box2-2 d-flex align-items-center justify-content-around">6th -
7th Mar 2021</div>
</div>
</div>
<div class="col-12 p-0 m-0 mt-3 home-box1 d-flex align-items-center justify-content-around">
Prizes Worth 7 Lacs+
</div>
<div class="col-12 p-0 m-0 row justify-content-center">
<!-- <div class="col-12 p-0 mt-3 m-0 home-button home-button-1">
<a href="https://innerve24hrs.typeform.com/to/lP3C5BSo"
class="col-12 d-flex align-items-center justify-content-between" target="blank">
<img class="registerimg" src="assets/img/register.svg" alt="regsiter">
<h4 class="button-text">Register Now</h4>
</a>
</div> -->
<div class="col-md-6 col-12 p-0">
<div class="col-12 d-flex flex-row flex-wrap justify-content-center p-0">
<div class="apply-button" data-hackathon-slug="innerve24hrs"
data-button-theme="light"></div>
<!-- <div class="apply-button" data-hackathon-slug="innerve24hrs"
data-button-theme="light"></div> -->
</div>
</div>
<div class="col-md-6 col-12 p-0 m-0 mt-3 home-button home-button-2">
<a class="col-12 d-flex align-items-center justify-content-between"
href="https://drive.google.com/file/d/1tWRnWtGG2-3bBNT5DYI186WYk2O0GvLK/view"
target="_blank">
<img class="discordimg" src="./assets/img/down.svg" alt="brochure">
<h4 class="button-text">Final Teams</h4>
</a>
</div>
</div>
</div>
</div>
<!-- <div class="container mt-5">
<div class="d-flex flex-row flex-wrap justify-content-around">
<div class="apply-button" data-hackathon-slug="innerve24hrs" data-button-theme="light"
style="height: 74px; width: 400px"></div>
<script defer async src="https://apply.devfolio.co/v2/sdk.js"></script>
</div>
</div> -->
<div class="modal fade" id="reminderModal" tabindex="-1" role="dialog"
aria-labelledby="reminderModalLabel" aria-hidden="true">
<div class="modal-dialog d-flex flex-row flex-wrap justify-content-center" role="document">
<div class="modal-content">
<form class="modal-body" action="https://aitoss.club/api/v1/innerveReminder" method="POST">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<div class="form-group">
<small id="emailHelp" class="form-text m-3 text-center text-muted">Enter your
E-Mail to
get reminder before registration closes</small>
<input type="email" name="email" class="form-control" id="exampleInputEmail1"
aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-center text-muted">We'll never share
your email with
anyone else.</small>
</div>
<div class="sub-btn">
<button class="btn btn-remind" type="submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
<div class="countdown mt-mb-5 mb-md-5 ">
<div class="row ">
<div class="col-md-3 col-3 col-sm-3 ">
<div class="timer-block ">
<h4 class="timer-value" id="days">0</h4>
<h5 class="timer-static">Days</h5>
</div>
</div>
<div class="col-md-3 col-3 col-sm-3 ">
<div class="timer-block">
<h4 class="timer-value" id="hours">0</h4>
<h5 class="timer-static">Hours</h5>
</div>
</div>
<div class="col-md-3 col-3 col-sm-3">
<div class="timer-block">
<h4 class="timer-value" id="minutes">0</h4>
<h5 class="timer-static">Minutes</h5>
</div>
</div>
<div class="col-md-3 col-3 col-sm-3">
<div class="timer-block">
<h4 class="timer-value" id="seconds">0</h4>
<h5 class="timer-static">Seconds</h5>
</div>
</div>
</div>
</div>
<div class="container-fluid mt-5">
<div class="row justify-content-around">
<div class="col-10 text-center">
<p class=mb-0>
Innerve 5.0 imparts you the platform to showcase your ideas and technical skills at a
recognized level. This is the perfect opportunity to get those breathtaking ideas out of
your astonishing minds and onto the computer screens. Coming again this year
Innerve brings you with more engrossing and strenuous problem statements than ever
before. So get ready for Innerve 5.0 to animate you with newer abstract, amazing
winnings, and a fun-packed experience.
</p>
</div>
</div>
</div>
</div>
</div>
<!-------------------------------------------------- Home Section -------------------------------------------------------->
<!-------------------------------------------------- Prizes Section ------------------------------------------------------>
<div class="container prizes-main " id="navprizes ">
<div class="container mt-5 mb-5 ">
</div>
<div class="row justify-content-center text-center mt-5 mb-5 ">
<div class="col-md-6 ">
<h2 class="prize-text ">Exciting Prizes</h2>
<img class="prize-img-head phone-none " src="./assets/img/svg-prizes.svg " alt=" " srcset=" ">
</div>
<div class="col-md-6 ">
<div class="prize-img "><img src="./assets/img/1st.svg "></div>
<div class="prize-img "><img src="./assets/img/2nd.svg "></div>
<div class="prize-img "><img src="./assets/img/3rd.svg "></div>
</div>
<div class="container mt-5 ">
<h5 id="goodie ">And many more goodies and credits for all participants</h5>
</div>
</div>
</div>
<div class="container-fluid">
<div class="d-flex flex-row flex-wrap justify-content-center align-items-center m-5 pb-5">
<div class="col-12 col-md-4 col-lg-3">
<div class="prize-wrapper mb-4">
<div class="prize-card api-card-size">
<input type="checkbox" id="card5" class="more" aria-hidden="true">
<div class="prize-content">
<div class="front">
<div class="inner">
<h6 class="api-plan">Matic</h6>
<div class="api-icon">
<img style="width:200px; height:auto; margin-bottom:30px; margin-top:50px"
src="./assets/img/matic.webp"
onerror="this.onerror=null;this.src='img/sponsors-img/matic.png';"
alt="Clerky">
</div>
<div>
<h2 class="ticket-price" style="color:black !important"><span>₹</span>15,000
</h2>
</div>
<label for="card5" 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>₹15,000 for the best hack built on Ethereum and Matic OR<br>10,000
for
the best hack built on Ethereum<br></li>
<li>Eligibility to apply for internship/full-time roles and seed funding
of
up to 5,000 USD for winners!</li>
</ul>
</div>
<div class="location">Matic</div>
<div class="price"><span>₹</span>15,000</div>
<label for="card5" class="prize-button return" aria-hidden="true">
Back
</label>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-4 col-lg-3">
<div class="prize-wrapper mb-4">
<div class="prize-card api-card-size">
<input type="checkbox" id="card6" class="more" aria-hidden="true">
<div class="prize-content">
<div class="front">
<div class="inner">
<h6 class="api-plan">Portis</h6>
<div class="api-icon">
<img style="width:200px; height:auto; margin-bottom:25px; margin-top:35px"
src="./assets/img/Portis_Logo-Black.png" alt="Portis">
</div>
<div>
<h2 class="ticket-price" style="color:black !important"><span>₹</span>15,000
</h2>
</div>
<label for="card6" 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>₹15,000 for best Dapp built on Portis</li>
</ul>
</div>
<div class="location">Portis</div>
<div class="price"><span>₹</span>15,000</div>
<label for="card6" class="prize-button return" aria-hidden="true">
Back
</label>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-4 col-lg-3">
<div class="prize-wrapper mb-4">
<div class="prize-card api-card-size">
<input type="checkbox" id="card7" class="more" aria-hidden="true">
<div class="prize-content">
<div class="front">
<div class="inner">
<h6 class="api-plan">Tezos</h6>
<div class="api-icon">
<img style="width:200px; height:auto; margin-bottom:25px; margin-top:35px"
src="./assets/img/Tezos_Logo-Colored.png" alt="Tezos">
</div>
<div>
<h2 class="ticket-price" style="color:black !important">
<span>₹</span>20,000
</h2>
</div>
<label for="card7" 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">
<ol>
<li>₹20,000 for best Dapp built on Tezos
Continuity Grant opportunity for exceptional builders</li>
</ol>
</div>
<div class="location">Tezos</div>
<div class="price"><span>₹</span>20,000</div>
<label for="card7" class="prize-button return" aria-hidden="true">
Back
</label>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-4 col-lg-3">
<div class="prize-wrapper mb-4">
<div class="prize-card api-card-size">
<input type="checkbox" id="card4" class="more" aria-hidden="true">
<div class="prize-content">
<div class="front">
<div class="inner">
<h6 class="api-plan">echoAR</h6>
<div class="api-icon">
<img style="width:200px; height:auto; margin-bottom:17px; margin-top:35px;overflow:hidden;"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/EchoAR_brand_logo_2.webp/386px-EchoAR_brand_logo_2.webp.png"
alt="echoAR">
</div>
<div>
<h2 class="ticket-price" style="color:black !important">
<span>$</span>50*
</h2>
</div>
<label for="card4" 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">
<ol>
<li>Amazon Gift Card worth $50</li>
</ol>
</div>
<div class="location">echoAR</div>
<div class="price">$50</div>
<label for="card4" class="prize-button return" aria-hidden="true">
Back
</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-------------------------------------------------- Prizes Section ------------------------------------------------------>
<!-------------------------------------------------- Quiz Section ------------------------------------------------------>
<div class="container-fluid themes-main" id="nav-quiz">
<div class="row justify-content-around">
<div class="col-10">
<div class="col-12 quiz-text">
<h1 class="text-center">Pre-Innerve Quizzes</h1>
<!-- <p class="text-center"> Below are the given themes for the fifth version of Innerve, If you
think you have some out of the theme problems and solution do contact us !</p> -->
</div>
<div id="carouselQuizExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item quiz-carousel-item active pb-5 mb-5">
<div class="row justify-content-center pt-5">
<div class="col-sm-8 col-md-8 col-lg-7 pr-lg-5 text-center justify-content-center">
<div class="img-quiz">
<img src="./assets/poster/figmd-quiz.png" alt="Health-care">
</div>
</div>
<div
class="col-sm-10 col-md-10 col-lg-5 quiz-text align-self-center justify-content-center text-center text-lg-left mt-4 mt-lg-0">
<h3 class="mb-4">
FIGmd Quiz
</h3>
<p class="mb-4 mb-lg-5">
<br class="d-inline d-lg-none"> Innerve in collaboration with FIGmd is
bringing <b>"Pre-Innerve Quiz | FIGmd"</b> for all the geeks out there.
<br> <b>Format:</b> 20 Multiple Choice Questions
carrying equal marks
</p>
<div class="d-flex flex-row flex-wrap quiz-btn">
<a class="quiz-button text-center" id="figmd-quiz" target="_blank"
href="https://dare2compete.com/o/pre-innerve-quiz-figmd-innerve-50-oss-club-army-institute-of-technology-148845?fbclid=IwAR3O-O_NRCwdzpRF40dcwZ4wqs05chdEzd4TwAIXQVBqJ6vrlh4yBfDgLl4">
Register
</a>
</div>
</div>
</div>
</div>
<div class="carousel-item quiz-carousel-item pb-5 mb-5">
<div class="row justify-content-center pt-5">
<div class="col-sm-8 col-md-8 col-lg-7 pr-lg-5 text-center justify-content-center">
<div class="img-quiz">
<img src="./assets/poster/hashmap-quiz.png" alt="Health-care">
</div>
</div>
<div
class="col-sm-8 col-md-8 col-lg-5 quiz-text align-self-center justify-content-center text-center text-lg-left mt-4 mt-lg-0">
<h3 class="mb-4">
Hashmap Quiz
</h3>
<p class="mb-4 mb-lg-5">
<br class="d-inline d-lg-none"> Innerve in
collaboration with Hashmap is bringing <b>"Pre-Innerve Quiz | Hashmap"</b>
for all
the geeks out there.
<br> <b>Format:</b> 20 Multiple Choice Questions
carrying equal marks
</p>
<div class="d-flex flex-row flex-wrap quiz-btn">
<a class="quiz-button text-center" id="hashmap-quiz" target="_blank"
href="https://dare2compete.com/o/pre-innerve-quiz-hashmap-innerve-50-oss-club-army-institute-of-technology-148841">
Register
</a>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselQuixExampleIndicators" role="button"
data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselQuizExampleIndicators" role="button"
data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<!-------------------------------------------------- Quiz Section ------------------------------------------------------>
<!-------------------------------------------------- Steps Section ------------------------------------------------------->
<div class="container-fluid steps-main " id="navabout ">
<div class="row justify-content-around ">
<div class="col-sm-10 col-md-8 col-xl-5 ">
<div class="img-steps d-flex justify-content-around ">
<img src="./assets/img/about-svg.svg " alt=about>
</div>
</div>
<div class="col-10 steps-head text-center pb-4 mt-n2 mt-lg-n5 z-bigger ">
<h2 class=mb-0>
It’s not just another Hackathon, to win money.
</h2>
</div>
<div class="col-10 steps-para text-center mb-5 ">
<p class=mb-0>
It’s a driving force! The passion that can lead you to go the extra mile and find better
ways of
solving problems.
</p>
</div>
</div>
<div class="row justify-content-center ">
<div class="col-md-2 col-sm-12 justify-content-center text-center ">
<a>
<div id=circle class="d-flex ">
<svg version=1.1 xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink
x=0px y=0px width=30px height=30px viewBox="0 0 300 300 "
enable-background="new 0 0 300 300 " xml:space=preserve>
<defs>
<path id=circlePath
d="M 150, 150 m -60, 0 a 60,60 0 0,1 120,0 a 60,60 0 0,1 -120,0 " />
</defs>
<circle fill=none />
<g>
<use xlink:href=#circlePath fill=none />
<text>
<textPath xlink:href=#circlePath>Let's build awesome together! •
</textPath>
</text>
</g>
</svg>
</div>
</a>
<h4 class="mb-5 ">
6-step<br>process
</h4>
<div class="inv-buttons ">
<p class="cm-buttons ">
<a href=https://www.linkedin.com/company/open-source-software-club/ rel=noopener
target=_blank class="btn btn-approach ">LinkedIn</a>
</p>
<p class="cm-buttons ">
<a href=https://www.facebook.com/innerve24hrs/ rel=noopener target=_blank
class="btn btn-approach ">Facebook</a>
</p>
<p class="cm-buttons ">
<a href=https://www.instagram.com/innerve24hrs/ rel=noopener target=_blank
class="btn btn-approach ">Instagram</a>
</p>
<p class="cm-buttons ">
<a href=https://github.com/aitoss rel=noopener target=_blank
class="btn btn-approach ">Github</a>
</p>
</div>
</div>
<div class="col-md-8 justify-content-around qna-right ">
<div class="qna ">
<div onclick="changeFaqIcon(this.id) " class="qna-ques " data-toggle=collapse
href=#collapseExample-1 id="collapseExample-q1 " role=button aria-expanded=false
aria-controls=collapseExample-1 aria-label=collapseExample-1>
<p class="col-12 d-flex flex-row justify-content-between align-items-center ">
<span><span class="qna-number ">1 </span> Team Formation & Brain
Storming</span>
<span class="float-right qna-icon-plus mt-0 " id="collapseExample-q1-qna-icon ">+</span>
</p>
</div>
<div class="collapse qna-answer " id=collapseExample-1>
<p>
Forming to Storming in the contest plays prime role to ace among your competitors.
</p>
</div>
</div>
<div class="qna ">
<div onclick="changeFaqIcon(this.id) " class="qna-ques " data-toggle=collapse
href=#collapseExample-2 id="collapseExample-q2 " role=button aria-expanded=false
aria-controls=collapseExample-2 aria-label=collapseExample-2>
<p class="col-12 d-flex flex-row justify-content-between align-items-center ">
<span><span class="qna-number ">2 </span> Registration & Idea
Submission</span>
<span class="float-right qna-icon-plus mt-0 " id="collapseExample-q2-qna-icon ">+</span>
</p>
</div>
<div class="collapse qna-answer " id=collapseExample-2>
<p>
Register your team and submit your idea in the form of ppt/pdf/video presentation on
the
link given at the top of this page.
</p>
</div>
</div>
<div class="qna ">
<div onclick="changeFaqIcon(this.id) " class="qna-ques " data-toggle=collapse
href=#collapseExample-4 id="collapseExample-q4 " role=button aria-expanded=false
aria-controls=collapseExample-4 aria-label=collapseExample-4>
<p class="col-12 d-flex flex-row justify-content-between align-items-center ">
<span><span class="qna-number ">3 </span> Shortlisting Contenders</span>
<span class="float-right qna-icon-plus mt-0 " id="collapseExample-q4-qna-icon ">+</span>
</p>
</div>
<div class="collapse qna-answer " id=collapseExample-4>
<p>
Candidates with best idea gets qualified for the next phase for a real-time
implementation.
</p>
</div>
</div>
<div class="qna ">
<div onclick="changeFaqIcon(this.id) " class="qna-ques " data-toggle=collapse
href=#collapseExample-5 id="collapseExample-q5 " role=button aria-expanded=false
aria-controls=collapseExample-5 aria-label=collapseExample-5>
<p class="col-12 d-flex flex-row justify-content-between align-items-center ">
<span><span class="qna-number ">4 </span> 24hrs Live Hackathon</span>
<span class="float-right qna-icon-plus mt-0 " id="collapseExample-q5-qna-icon ">+</span>
</p>
</div>
<div class="collapse qna-answer " id=collapseExample-5>
<p>
Pace with your competitors in a 24hr live hackathon which invloves the idea
implementation through code.
</p>
</div>
</div>
<div class="qna ">
<div onclick="changeFaqIcon(this.id) " class="qna-ques " data-toggle=collapse
href=#collapseExample-6 id="collapseExample-q6 " role=button aria-expanded=false
aria-controls=collapseExample-6 aria-label=collapseExample-6>
<p class="col-12 d-flex flex-row justify-content-between align-items-center ">
<span><span class="qna-number ">5 </span> Project Presentation</span>
<span class="float-right qna-icon-plus mt-0 " id="collapseExample-q6-qna-icon ">+</span>
</p>
</div>
<div class="collapse qna-answer " id=collapseExample-6>
<p>
Judges evaluate the overall implementation and application of the idea in terms of
productiveness of the concept.
</p>
</div>
</div>
<div class="qna ">
<div onclick="changeFaqIcon(this.id) " class="qna-ques " data-toggle=collapse
href=#collapseExample-7 id="collapseExample-q7 " role=button aria-expanded=false
aria-controls=collapseExample-7 aria-label=collapseExample-7>
<p class="col-12 d-flex flex-row justify-content-between align-items-center ">
<span><span class="qna-number ">6 </span> Winner Declaration</span>
<span class="float-right qna-icon-plus mt-0 " id="collapseExample-q7-qna-icon ">+</span>
</p>
</div>
<div class="collapse qna-answer " id=collapseExample-7>
<p>
Winners are awarded with prize-money worth their efforts followed by the closing
ceremony
</p>
</div>
</div>
</div>
</div>
</div>
<!-------------------------------------------------- Steps Section ------------------------------------------------------->
<!-------------------------------------------------- Themes Section ------------------------------------------------------>
<div class="container-fluid themes-main" id="navtheme">
<div class="row justify-content-around">
<div class="col-10">
<div class="col-12 themes-text">
<h1 class="text-center">Themes</h1>
<p class="text-center"> Below are the given themes for the fifth version of Innerve, If you
think you have some out of the theme problems and solution do contact us !</p>
</div>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="4"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="5"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row justify-content-center pt-5 mt-lg-5">
<div class="col-sm-10 col-md-8 col-lg-7 pr-lg-5">
<div class="img-themes">
<img src="./assets/img/health.svg" alt="Health-care">
</div>
</div>
<div
class="col-sm-10 col-md-8 col-lg-5 themes-text align-self-center text-center text-lg-left mt-4 mt-lg-0">
<h3 class="mb-4">
Health care
</h3>
<p class="mb-4 mb-lg-5">
<br class="d-inline d-lg-none">Looking at Healthcare in a completely new
way
focusing on earlier, pre-symptomatic disease detection and prevention,
instead of late diagnosis helping clinicians access more information
and intervene sooner with targeted treatments.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row justify-content-center pt-5 mt-lg-5">
<div class="col-sm-10 col-md-8 col-lg-7 pr-lg-5">
<div class="img-themes">
<img src="./assets/img/covid.svg" alt="Health-care">
</div>
</div>
<div
class="col-sm-10 col-md-8 col-lg-5 themes-text align-self-center text-center text-lg-left mt-4 mt-lg-0">
<h3 class="mb-4">
Covid
</h3>
<p class="mb-4 mb-lg-5">
<br class="d-inline d-lg-none">It's an open opportunity for all the
developers out there to build software solutions that drive social
impact,
aim to tackle some of the challenges related to the current coronavirus
(COVID 19) pandemic.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row justify-content-center pt-5 mt-lg-5">
<div class="col-sm-10 col-md-8 col-lg-7 pr-lg-5">
<div class="img-themes">
<img src="./assets/img/transportation.svg" alt="Health-care">
</div>
</div>
<div
class="col-sm-10 col-md-8 col-lg-5 themes-text align-self-center text-center text-lg-left mt-4 mt-lg-0">
<h3 class=mb-4>
Transport
</h3>
<p class="mb-4 mb-lg-5">
<br class="d-inline d-lg-none">India is still facing various problems
such
as traffic congestion, parking issues, environmental problems, etc.
These
are the main problems of the present scenario and we want
to explore solutions to resolve these transportation issues.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row justify-content-center pt-5 mt-lg-5">
<div class="col-sm-10 col-md-8 col-lg-7 pr-lg-5">
<div class="img-themes">
<img src="assets/img/smart-city.svg" alt="Health-care">
</div>
</div>
<div
class="col-sm-10 col-md-8 col-lg-5 themes-text align-self-center text-center text-lg-left mt-4 mt-lg-0">
<h3 class="mb-4">
Smart City
</h3>
<p class="mb-4 mb-lg-5">
<br class="d-inline d-lg-none">Ever got the chance of making your city a
better place? Well, now is the time to think and act. Gather information
and
together, in a collaborative fashion, build solutions that
will make our city a more efficient and intelligent place to live.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row justify-content-center pt-5 mt-lg-5">
<div class="col-sm-10 col-md-8 col-lg-7 pr-lg-5">
<div class="img-themes">
<img src="./assets/img/blockchain.svg" alt="Health-care">
</div>
</div>
<div
class="col-sm-10 col-md-8 col-lg-5 themes-text align-self-center text-center text-lg-left mt-4 mt-lg-0">
<h3 class=mb-4>
Blockchain
</h3>
<p class="mb-4 mb-lg-5">
<br class="d-inline d-lg-none">From traceable supply chains to permanent
identity for refugees, blockchain is pioneering transparent and secure
business processes. Blockchain technology provides new infrastructure
to build the next innovative applications.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row justify-content-center pt-5 mt-lg-5">
<div class="col-sm-10 col-md-8 col-lg-7 pr-lg-5">
<div class="img-themes">
<img src="./assets/img/edutech.svg" alt="Health-care">
</div>
</div>
<div
class="col-sm-10 col-md-8 col-lg-5 themes-text align-self-center text-center text-lg-left mt-4 mt-lg-0">
<h3 class="mb-4">
EduTech
</h3>
<p class="mb-4 mb-lg-5">
<br class="d-inline d-lg-none">Lack of proper transportation to school,
basic infrastructure, qualified teachers, quality of education, low
awareness of importance of education, etc are just small portion of
challenges which holds back the development.
</p>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button"
data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button"
data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<!-------------------------------------------------- Themes Section ------------------------------------------------------>
<!-------------------------------------------------- FAQ Section ------------------------------------------------------>
<div class="steps-main container-fluid " id="navfaq ">
<div class="row justify-content-center pt-5 ">
<div class="col-md-2 col-sm-12 justify-content-center text-center ">
<h4>
FAQ's
</h4>
<div class="pt-4 inv-buttons ">
<p>
<a href="https://innerve24hrs.typeform.com/to/lP3C5BSo " el=noopener target=_blank
class="btn btn-approach ">Register</a>
</p>
</div>
</div>
<div class="col-md-8 justify-content-around qna-right ">
<div class="qna ">
<div onclick="changeFaqIcon(this.id) " class="qna-ques " data-toggle=collapse href=#faq-1
role=button aria-expanded=false aria-controls=faq-1 aria-label=faq-1 id=faq-q1>
<p class="col-12 d-flex flex-row justify-content-between align-items-center ">
<span><span class="qna-number ">1 </span> What are the perks of attending
Innerve
5.0?
</span>
<span class="float-right qna-icon-plus mt-0 " id="faq-q1-qna-icon ">+</span>
</p>
</div>
<div class="collapse qna-answer " id=faq-1>
<p>
Sessions by the best speakers in their domains, a 24-hour hackathon with amazing
problem
statements and prizes! Goodies and Swags. Cmon, still need more?
</p>
</div>
</div>
<div class="qna ">
<div onclick="changeFaqIcon(this.id) " class="qna-ques " data-toggle=collapse href=#faq-2
role=button aria-expanded=false aria-controls=faq-2 aria-label=faq-2 id=faq-q2>
<p class="col-12 d-flex flex-row justify-content-between align-items-center ">
<span><span class="qna-number ">2 </span> Any specific qualifications to
be a
participant in the Hackathon?</span>
<span class="float-right qna-icon-plus mt-0 " id="faq-q2-qna-icon ">+</span>
</p>
</div>
<div class="collapse qna-answer " id=faq-2>
<p>
You love to code, you are more than welcome to participate in the Hackathon.
</p>
</div>
</div>
<div class="qna ">
<div onclick="changeFaqIcon(this.id) " class="qna-ques " data-toggle=collapse href=#faq-3
role=button aria-expanded=false aria-controls=faq-3 aria-label=faq-3 id=faq-q3>
<p class="col-12 d-flex flex-row justify-content-between align-items-center ">
<span><span class="qna-number ">3 </span> Is there any registration fees
to
attend Innerve?
</span>
<span class="float-right qna-icon-plus mt-0 " id="faq-q3-qna-icon ">+</span>
</p>
</div>