-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiinnovate.html
972 lines (846 loc) · 30 KB
/
iinnovate.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
<!DOCTYPE html>
<html>
<!-- Mirrored from makermela.com/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 17 Apr 2020 14:59:57 GMT -->
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../use.fontawesome.com/releases/v5.2.0/css/all.css">
<link rel="stylesheet" href="../www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="../cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="fonts/fonts.css">
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<link rel="stylesheet" href="../i.icomoon.io/public/temp/fdfcfa0175/UntitledProject/style.html">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="img/innovate.jpeg" type="image/x-icon">
<title>I-Innovate</title>
<style type="text/css">
.hero-image {
background-image: url("img/d1%20(1.html).jpg");
background-attachment: fixed;
background-position: center;
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.hero-text {
margin: auto;
color: white;
font-family: 'Open Sans', sans-serif;
font-size: 24px;
line-height: 1.6;
text-align: center;
width: 80%;
padding-top: 10px;
}
.hero-text h1{
font-size:36px;
font-family:'Helvetica';
}
.overlay {
height: 100vh;
width: 100%;
position: absolute;
overflow: auto;
top: 0px;
left: 0px;
background:green ; /*can be anything, of course*/
display: flex;
}
.button {
border: none;
/*color: white;*/
padding: 11px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 10px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
margin: auto;
width: 60%;
}
.button5 {
background-color: white;
color: green;
font-size: 12px;
border-radius: 12px;
letter-spacing: 1px;
}
.button1 {
background-color: green;
color: white;
border-radius: 12px;=
transition: 0.1s ease-in;
font-size: 18px;
}
.button5:hover {
background-color: white;
color: green;
font-weight:bold;
font-size: 15px;
}
.button1:hover {
background-color: #fff;
color: green;
border: 2px solid green;
}
.button2 {
background-color: #fff;
color: #cc0000;
border-radius: 12px;
margin-top: 40px;
transition: 0.1s ease-in;
font-size: 15px;
text-transform: uppercase;
}
.button2:hover {
background-color: #3498db;
color: white;
font-size: 18px;
}
.button3 {
background-color: #fff;
color: green;
border-radius: 12px;
margin-top: 40px;
transition: 0.1s ease-in;
font-size: 15px;
text-transform: uppercase;
}
.button3:hover {
background-color: green;
color: white;
font-size: 12px;
}
@media only screen and (min-width: 860px) {
.hero-text {
color: white;
font-family: 'Open Sans', sans-serif;
font-size: 36px;
line-height: 1.0;
text-align: center;
width: 50%;
}
.hero-text p{
font-size: 42px;
line-height: 1.2;
}
.hero-text h1{
font-size:72px;
font-family:'Proxima Nova';
font-weight: bold;
}
.button{
font-size: 18px;
width: 50%;
}
.button5:hover {
font-size: 18px;
}
.button2:hover{
padding: 16px 30px;
font-size: 20px;
}
.button{
font-size: 15px;
}
.button3:hover{
padding: 16px 25px;
font-size: 20px;
}
}
</style>
<style type="text/css">
div.panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
}
div.panel.show {
display: block !important;
}
.accordion {
background-color: #fff;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
font-weight: bolder;
}
#faqs h1 {
text-align: center;
color: #fff;
font-size: 24px;
font-family:'Proxima Nova';
text-transform: uppercase;
width: 80%;
margin: auto;
margin-top: 50px;
letter-spacing: 1.25px;
}
.box{
padding: 10px;
width: 90%;
margin: auto;
margin-bottom: 30px;
}
.box_parent{
display: flex;
flex-wrap: wrap;
}
.active, .accordion:hover {
background-color: #eee;
}
.accordion:after {
content: '\002B';
color: #777;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
#faqs{
min-height: 100vh;
padding-top: 30px;
padding-bottom: 30px;
}
@media only screen and (min-width: 660px) {
.box{
padding: 10px;
width: 40%;
margin: auto;
margin-bottom: 30px;
}
#faqs h1 {
font-size: 36px;
margin-bottom: 90px;
}
}
</style>
<style type="text/css">
.iconBox p {
font-size: 17px;
text-transform: uppercase;
margin-top: 60px;
}
.iconBox:hover {
padding: 10px 10px;
cursor: pointer;
}
.benefitBox img{
height: 80px;
width:80px;
}
@media only screen and (min-width: 860px){
.iconBox {
height: 300px;
width: 30%;
}
.icon:hover {
padding: 10px 10px;
cursor: pointer;
}
}
</style>
<style type="text/css">
.partnerBox > a > img{
max-height: 120px;
max-width: 250px;
margin: auto;
}.partnerBox > a {
display: flex;
}
</style>
<!--<script type="text/javascript" src="snowstorm-min.js"></script>-->
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html" class="logo-mm"><img src="img/logo.jpeg"></a>
<a href="#rightleft" class="navtext" style="font-family: helvetica;">About</a>
<a href="#benefits" class="navtext" style="font-family: helvetica;">Benefits</a>
<a href="#reg" class="navtext" style="font-family: helvetica; color:green">Register</a>
<!--
<a href="#videos" class="navtext" style="font-family: helvetica;">Videos</a>
<a href="#speaker" class="navtext" style="font-family: helvetica;">Speakers</a> -->
<a href="#mapOverlay" class="navtext" style="font-family: helvetica;">Schedule</a>
<!-- <a href="events.html" class="navtext" style="font-family: helvetica;">Events</a> -->
<!-- <a href="http://thedarwin.in/" class="navtext" style="font-family: helvetica;">Darwin</a> -->
<a href="#faqs" class="navtext" style="font-family: helvetica;">FAQs</a>
<a href="#partner" class="navtext" style="font-family: helvetica;">Partners</a>
<!-- <a href="http://blog.makermela.com/" class="navtext" style="font-family: helvetica;">Blogs</a> -->
<!-- <a href="#" class="navtext login" style="font-family: helvetica;">Login</a> -->
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- Section 1 -->
<div class="hero-image">
<div class="overlay">
<div class="hero-text">
<h1 style="margin-bottom: 0px;">I-INNOVATE</h1>
<h3 style="margin-top: 0px; font-size: 22px"> 22<sup>nd</sup> April 2020 - 2<sup>nd</sup> May 2020 </h3>
<p style="letter-spacing: 1px;">Telangana's Biggest Online Hackathon</p>
<a href="https://forms.gle/42UsqPqhRv6Lmr7s6"><button class="button button5">REGISTER NOW</button></a>
</div>
</div>
</div>
<!-- Section 1 ended-->
<div id="rightleft">
<div id="rlcontainer">
<div class="rightText">
<div class="rtcontainer">
<h1> About I-INNOVATE </h1>
<p style="font-size: 18px;">I Innovate is an online Hackathon, where people participate in the hackathon expected to identify problems in their locality or any other place of their concern and come up with an innovate solution.</p>
<p style="font-size: 18px;">If you are thinking of presenting an issue them make sure that you have answers to the below questions.<p>
<p>
<span style="font-size: 18px;">
1) What kind of problems yoy have identified so far ?<br>
2) How you are addressing the problem ? <br>
3) Why have you addressed this problem ? <br>
4) Which community primarily affected by such problems? <br>
5) How are you going to solve the problem?
<br>
</span>
</p>
</div>
</div>
<div class="leftImage">
<img src="img/WEB.png">
</div>
</div>
</div>
<!-- Section rightleft ends -->
<!-- Register Section -->
<div id="registerOverlay" style="background: url('img/boat.png') no-repeat; background-position: center; background-attachment: fixed; background-size: cover;">
<div id="registerSection">
<div id="registerContainer" style="width: 80%; background: rgb(255,255,255);">
<div id="registerTitle">
<h1>An initiative of</h1>
</div>
<div id="registerMethods" style="display: flex; max-width: 80%; margin: auto; flex-wrap: wrap; justify-content: space-around;">
<div class="partnerBox">
<img src="img/sict.jpeg">
</div>
</div>
<div id="registerTitle">
<h1>Organized by</h1>
</div>
<div id="registerMethods" style="display: flex; max-width: 80%; margin: auto; flex-wrap: wrap; justify-content: space-around;">
<div class="partnerBox">
<img src="img/publishsutra.jpeg">
</div>
</div>
<!--<div id="registerTitle">
<h1>Supported by</h1>
</div>
<div id="registerMethods" style="display: flex; max-width: 80%; margin: auto; flex-wrap: wrap; justify-content: space-around;">
<div class="partnerBox">
<img src="img/dst.png">
</div>
<div class="partnerBox" style="margin-left: 30px; margin-right: 50px;">
<img src="img/birac.jpg">
</div>
</div>-->
</div>
</div>
</div>
<div id="benefits">
<div id="headText">
<p>Perks For Participants</p>
</div>
<div id="row1">
<div class="benefitBox">
<img src="img/benefits/faq.png"><br><br>
<p class="benefitsTitle">Problem Defination</p>
<p class="benefitsText">Identifying the problen and its severity.</p>
</div>
<div class="benefitBox">
<img src="img/benefits/idea.png"><br><br>
<p class="benefitsTitle">Pitching Ideas</p>
<p class="benefitsText">Get a chance to pitch your ideas.</p>
</div>
<div class="benefitBox">
<img src="img/benefits/puzzle.png"><br><br>
<p class="benefitsTitle">Idea Evaluation</p>
<p class="benefitsText">Review your idea from experts.</p>
</div>
<div class="benefitBox">
<img src="img/benefits/brain.png"><br><br>
<p class="benefitsTitle">Mentoring</p>
<p class="benefitsText">3 months of mentoring from experts and incubation support.</p>
</div>
<div class="benefitBox">
<img src="img/benefits/graphic-design.png"><br><br>
<p class="benefitsTitle">Design Thinking</p>
<p class="benefitsText">Learn the cognitive, strategic and practical processes by which design concepts (proposals for new products, buildings, machines, etc.)</p>
</div>
<div class="benefitBox">
<img src="img/benefits/think.png"><br><br>
<p class="benefitsTitle">Takeaways</p>
<p class="benefitsText"> Get a chance to have connection with high profile people and certificates of internship etc..</p>
</div>
<!--<div class="benefitBox">-->
<!-- <img src="img/benefits/living-room.png"><br><br>-->
<!-- <p class="benefitsTitle">Accommodation</p>-->
<!--<p class="benefitsText">Accommodation for 30 Makers during the event, for first 100 applicants who apply.</p>-->
<!--</div>-->
</div>
</div>
<!-- Section Benefits ends -->
<!-- Register Section -->
<div id="reg">
<div id="registerOverlay" style="background: url('img/d1%20(3.html).jpg') no-repeat; background-position: center; background-attachment: fixed; background-size: cover;">
<div id="registerSection">
<div id="registerContainer" style="background: rgb(255,255,255);">
<div id="registerTitle">
<h1>register</h1>
</div>
<div id="registerMethods" style="display: flex;max-width: 100%;margin: auto;flex-wrap: wrap;justify-content: space-around;margin-top: 10px;margin-bottom: 10px;">
<div class="methodBox">
<a href="https://forms.gle/BmKZbbB3ZDeD9Bwp8"> <button class="button button1"> Register For Webinars</button>
</a>
</div>
<div class="methodBox">
<a href="https://forms.gle/42UsqPqhRv6Lmr7s6"><button class="button button1">Register For Hackathon</button> </a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rightleft">
<div id="rlcontainer">
<div class="rightText">
<div class="rtcontainer" style="text-align: center;">
<img src="img/speakers/ankit.jpg" style="height: 300px; width: 300px; border-radius:50%"><br>
<h3> Name Of Speaker </h3>
<p style="font-size: 18px;">
About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here About sepakers here
</p>
</div>
</div>
<div class="leftImage">
<img src="img/WEB.png">
</div>
</div>
</div>
<div id="speaker">
<div id="pcontainer">
<div id="speakerTitle">
<h1 style="padding-bottom: 50px;"> Star Speaker</h1>
</div>
<div class="single-row">
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px">Ankitkumar Singh<br><font style="color: #fff; font-size: 18px; text-transform: none;">Developer And Founder Mahawiki</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px">Ankitkumar Singh<br><font style="color: #fff; font-size: 18px; text-transform: none;">Developer And Founder Mahawiki</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px">Ankitkumar Singh<br><font style="color: #fff; font-size: 18px; text-transform: none;">Developer And Founder Mahawiki</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px">Ankitkumar Singh<br><font style="color: #fff; font-size: 18px; text-transform: none;">Developer And Founder Mahawiki</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px">Ankitkumar Singh<br><font style="color: #fff; font-size: 18px; text-transform: none;">Developer And Founder Mahawiki</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px">Ankitkumar Singh<br><font style="color: #fff; font-size: 18px; text-transform: none;">Developer And Founder Mahawiki</font></p>
</div>
</div>
</div>
</div>
</div>
<div id="mapOverlay">
<div id="mapRightLeft">
<div id="maprlcontainer">
<div class="mapRightSection">
<div class="maprscontainer">
<h1 style="color:green "> SCHEDULE </h1>
<a href="schedule.pdf" style="text-decoration: none;">
<div class="scheduleContainer">
<div class="single-row">
<div class="single-column" style="width: 80%; background:green;border-radius: 20px">
<div class="center">
<p style="text-align: center; font-size: 24px; color: #fff">Download</p>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<!--<div class="mapLeftContainer">-->
<!-- <h1> EVENT MAP </h1><br>-->
<!-- <p style="text-align: center; font-size: 24px; color: #fff">Coming soon...</p>-->
<!--</div>-->
<div class="mapRightSection">
<div class="maprscontainer">
<h1 style="color:green "> EVENT NOTIFICATION</h1>
<!--<button onclick="document.getElementById('id99').style.display='block'" class="buttonsch">-->
<a href="notification.pdf" style="text-decoration: none;">
<div class="scheduleContainer">
<div class="single-row">
<div class="single-column" style="width: 80%; background:green;border-radius: 20px">
<div class="center">
<p style="text-align: center; font-size: 24px; color: #fff">View</p>
</div>
</div>
</div>
</div>
</a>
<!--</button>-->
<!-- <p style="width: 80%;margin-left: auto;margin-right: auto;"> </p>
<br><br> -->
<!-- <button style="background-color: white;border-radius: 25px;border-width:1px; border-color: #bbb;padding: 14px;margin: 20px;">DOWNLOAD SCHEDULE</button>
-->
</div>
</div>
</div>
</div>
</div>
<!-- Section MAP ends -->
<!--
Secttioin for add spekers or organizers or people
<div style="background: #fff" id="speaker">
<div id="pcontainer">
<div id="speakerTitle">
<h1 style="padding-bottom: 50px; color:green"> Oraganizers</h1>
</div>
<div class="single-row">
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px; color:green">Ankitkumar Singh<br><font style="color:green; font-size: 18px; text-transform: none;">Developer at Aress</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px; color:green">Ankitkumar Singh<br><font style="color:green; font-size: 18px; text-transform: none;">Developer at Aress</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px; color:green">Ankitkumar Singh<br><font style="color:green; font-size: 18px; text-transform: none;">Developer at Aress</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px; color:green">Ankitkumar Singh<br><font style="color:green; font-size: 18px; text-transform: none;">Developer at Aress</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px; color:green">Ankitkumar Singh<br><font style="color:green; font-size: 18px; text-transform: none;">Developer at Aress</font></p>
</div>
</div>
<div class="single-column" style="width: 80%;">
<div class="center">
<img src="img/speakers/ankit.jpg"><br>
<p style="font-size:22px; color:green">Ankitkumar Singh<br><font style="color:green; font-size: 18px; text-transform: none;">Developer at Aress</font></p>
</div>
</div>
</div>
</div>
</div>
-->
<!--How to Get Here-->
<!-- Get here ends -->
<!-- FAQs -->
<div id="registerOverlay" style="background: url('img/d1%20(2.html).jpg') no-repeat; background-position: center; background-attachment: fixed; background-size: cover;">
<div id="registerSection">
<div id="faqs">
<p><h1>Frequently Asked Questions</h1></p>
<div class="box_parent">
<div class="box">
<button class="accordion"> Is there any registration fee? </button>
<div class="panel">
<p class="text-light">No, there is no registration fees.</p>
</div>
</div>
<div class="box">
<button class="accordion"> What is the duration of the event? </button>
<div class="panel">
<p class="text-light">The entire event is if 10 days but the hackathon is of 24 hours long.</p>
</div>
</div>
<div class="box">
<button class="accordion"> What is the last date for registration? </button>
<div class="panel">
<p class="text-light">Last date for registration 27th April 2020.</p>
</div>
</div>
<div class="box">
<button class="accordion">How do I reach the register? </button>
<div class="panel">
<p class="text-light">Check the register option in the website and please feel free to contact the numbers for any further queries.</p>
</div>
</div>
<div class="box">
<button class="accordion">What is the team size ? </button>
<div class="panel">
<p class="text-light">Minimum of 1 and maximum of 5.</p>
</div>
</div>
<div class="box">
<button class="accordion">Who is eligible to register? </button>
<div class="panel">
<p class="text-light">Any person who thinks he has a groundbreaking idea or a concept and Who think they have solution for problems face by citizens.</p>
</div>
</div>
<div class="box">
<button class="accordion"> How to submit solutions</button>
<div class="panel">
<p class="text-light">You will be asked to submit from a dedicated link where you need to upload the requested files via online. You will receive a standard format where you have to tune your solution accordingly and submit it in the requested format.</p>
</div>
</div>
<div class="box">
<button class="accordion">What is the selection criteria? </button>
<div class="panel">
<p class="text-light">If ideas right, And if implementation is fruitfull.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- FAQs ends -->
<!-- Partner section -->
<div id="partner">
<div id="partnercontainer">
<div id="partnerTitle">
<h1>OUR PARTNERS</h1>
</div>
<div id="partnerBody">
<div class="partnerBox">
<a href=""><img src="img/partners/asia.png" style="width: 150px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
<div class="partnerBox">
<a href=""><img src="img/partners/Akshara.png" style="width: 150px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
<div class="partnerBox">
<a href=""><img src="img/partners/stumag.png" style="width: 120px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
</div>
<div id="partnerBody">
<div class="partnerBox">
<a href="https://maxprotein.in/"><img src="img/partners/valmiki.jpeg" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
<div class="partnerBox">
<a href=""><img src="img/partners/gtech.jpeg" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
<div class="partnerBox">
<a href=""><img src="img/partners/cloudchip.png" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
</div>
<div id="partnerBody">
<div class="partnerBox">
<a href="https://maxprotein.in/"><img src="img/partners/Literacyselected.png" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
<div class="partnerBox">
<a href=""><img src="img/partners/Brandlogo.jpg" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
<div class="partnerBox">
<a href=""><img src="img/partners/Mantram.jpeg" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
</div>
<div id="partnerBody">
<div class="partnerBox">
<a href="https://maxprotein.in/"><img src="img/partners/mahawiki.png" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
<div class="partnerBox">
<a href=""><img src="img/partners/Nivahatha.png" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
<div class="partnerBox">
<a href=""><img src="img/partners/kult.png" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
</div>
<div id="partnerBody">
<div class="partnerBox">
<a href="https://maxprotein.in/"><img src="img/partners/T.A.L.K.jpeg" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
<div class="partnerBox">
<a href=""><img src="img/partners/workminar.png" style="width: 180px; height: auto; max-width:250px; flex: 1; margin: auto; width: 100%;"></a>
</div>
</div>
</div>
</div>
<!-- Section Publication ends -->
<!-- Contact Us started -->
<div id="registerOverlay">
<div class="main-box" id="registerSection">
<div class="outer-box">
<h1>CONTACT US</h1>
<div class="container-box">
<div class="container-part">
<div style="font-size: 24px; color:green">
<h3>Email:</h3>
<p id="k">[email protected]</p>
</div>
</div>
<div class="container-part">
<div class="details">
<div style="font-size: 24px; color:green">
<h3>Contact Person:</h3>
<p>Krishna Chaitanya: +91 951-554-4099</p>
<p>Rahul: +91 889-753-4725 </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact Us Ended-->
<!-- Footer starts -->
<!--
<div class="footer">
<p>Copyright © Maker Mela</p>
<div class="footerIcons">
<a href="https://twitter.com/makermelaindia"><i class="fa fa-twitter" style="color: #fff;"></i></a>
<a href="https://www.facebook.com/makermela/"><i class="fa fa-facebook" style="color: #fff;"></i></a>
<a href="https://www.instagram.com/makermela/"><i class="fa fa-instagram" style="color: #fff;"></i></a>
</div>
<p>[email protected]</p>
</div> -->
<!-- Footer ends -->
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
}
else {
x.className = "topnav";
}
}
</script>
<script>
function myMap() {
var myCenter = new google.maps.LatLng(19.073515,72.899544);
var mapCanvas = document.getElementById("map-container");
var mapOptions = {center: myCenter, zoom: 17};
var map = new google.maps.Map(mapCanvas, mapOptions);
var marker = new google.maps.Marker({position:myCenter});
marker.setMap(map);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?callback=myMap&key=AIzaSyAk_WZV-2xOAL0W6DpHhGDMtaMshTlzvmw"></script>
<!-- Scroll reveal is used to reveal content after they enter the viewport-->
<script src="scrollreveal.min.js"></script>
<script>
window.sr = ScrollReveal({reset: true });
window.sr = ScrollReveal({reset: true });
</script>
<script>
sr.reveal('#headText', {duration: 500, origin: 'bottom', scale: 0.5});
sr.reveal('.benefitBox', {duration: 500, origin: 'bottom', scale: 0.5});
sr.reveal('#speakerTitle', {duration: 500, origin: 'right', scale: 0.5});
sr.reveal('.speakerBox', {duration: 1000, origin: 'left', scale: 0.5});
sr.reveal('.single-column', {duration: 1000, origin: 'left', scale: 0.5});
sr.reveal('#faqs', {duration: 1000, origin: 'left', scale: 0.5});
sr.reveal('.accordion', {duration: 1000, origin: 'left', scale: 0.5});
sr.reveal('.maprscontainer', {duration: 500, origin: 'right', scale: 0.5});
sr.reveal('.mapLeftContainer', {duration: 1000, origin: 'left', scale: 0.5});
sr.reveal('#registerContainer', {duration: 500, origin: 'right', scale: 0.5});
sr.reveal('.methodBox', {duration: 1000, origin: 'left', scale: 0.5});
sr.reveal('#partnerTitle', {duration: 500, origin: 'right', scale: 0.5});
sr.reveal('.partnerBox', {duration: 1000, origin: 'left', scale: 0.5});
sr.reveal('#publicationsTitle', {duration: 500, origin: 'right', scale: 0.5});
sr.reveal('.publicationsBox', {duration: 1000, origin: 'left', scale: 0.5});
</script>
<script type="text/javascript">
var acc = document.getElementsByClassName("accordion");
var panel = document.getElementsByClassName('panel');
for (var i = 0; i < acc.length; i++) {
acc[i].onclick = function() {
var setClasses = !this.classList.contains('active');
setClass(acc, 'active', 'remove');
setClass(panel, 'show', 'remove');
if (setClasses) {
this.classList.toggle("active");
this.nextElementSibling.classList.toggle("show");
}
}
}
function setClass(els, className, fnName) {
for (var i = 0; i < els.length; i++) {
els[i].classList[fnName](className);
}
}
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-111392550-2');
</script>
<!-- Global site tag (gtag.js) - Google Ads: 679413035 -->
<!-- Event snippet for pv conversion page -->
<script>
gtag('event', 'conversion', {'send_to': 'AW-679413035/GT4bCID47rgBEKuK_MMC'});
</script>
<script type="application/ld+json">
// {
// "@context": "http://schema.org",
// "@type": "ExhibitionEvent",
// "name": "Maker Mela",
// "image": "http://makermela.com/cover/makermela_cover.jpg",
// "url": "http://makermela.com",
// "description": "Maker Mela is the premier event for grassroot innovations in India. It is the celebration of arts, crafts, engineering, science, the Do-It-Yourself (DIY) mindset, and the Maker Movement. It's a platform for like-minded folks who bring to life a diverse range of raw, unique and unconventional ideas.",
// "startDate": "2020-01-09T10:00",
// "endDate": "2020-01-11T17:00",
// "location": {
// "@type": "Place",
// "name": "Maker Mela",
// "sameAs": "http://makermela.com/",
// "address": {
// "@type": "PostalAddress",
// "streetAddress": "Somaiya Vidyavihar, ",
// "addressLocality": "Vidyavihar",
// "addressRegion": "Mumbai",
// "postalCode": "400077"
// }
// },
// "offers": {
// "@type": "Offer",
// "url": "https://www.eventbrite.com/e/maker-mela-tickets-74091310103"
// }
// }
</script>
</body>
<!-- Mirrored from makermela.com/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 17 Apr 2020 15:12:55 GMT -->
</html>