-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
1095 lines (968 loc) · 39.8 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>
<head>
<title>KarunyaHacks</title>
<link rel="shortcut icon" href="images/fav.png" type="image/png">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<!--Google Fonts link-->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,600,600i,700,700i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="asse/css/iconfont.css">
<link rel="stylesheet" href="asse/css/slick/slick.css">
<link rel="stylesheet" href="asse/css/slick/slick-theme.css">
<link rel="stylesheet" href="asse/css/font-awesome.min.css">
<link rel="stylesheet" href="asse/css/jquery.fancybox.css">
<link rel="stylesheet" href="asse/css/bootstrap.css">
<link rel="stylesheet" href="asse/css/bootstrap.min.css">
<link rel="stylesheet" href="asse/css/magnific-popup.css">
<!-- <link rel="stylesheet" href="assets/css/bootstrap-theme.min.css">-->
<!--For Plugins external css-->
<link rel="stylesheet" href="asse/css/plugins.css" />
<!--Theme custom css -->
<link rel="stylesheet" href="asse/css/style.css">
<!--Theme Responsive css-->
<link rel="stylesheet" href="asse/css/responsive.css" />
<script src="asse/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
<style>#a1
{
display: none;
}
#a2
{
display: none;
}
#a3
{
display: none;
}
#a4
{
display: none;
}
#a5
{
display: none;
}
#a6
{
display: none;
}
#a7
{
display: none;
}
#a8
{
display: none;
}
#a9
{
display: none;
}
#a10
{
display: none;
}
#a11
{
display: none;
}
#a12
{
display: none;
}
.sz
{
font-size: 50px;
}
#mlhnav{
background-color:white ;
height: 80px;
width:100%;
position:fixed;
z-index:100;
-webkit-box-shadow: 0 8px 6px -6px rgb(54, 52, 52);
-moz-box-shadow: 0 8px 6px -6px rgb(54, 52, 52);
box-shadow: 0 8px 6px -6px rgb(54, 52, 52);
}
strong{
font-size: 18px;
font-family:Raleway;
}
@-webkit-keyframes Gradient {
0% {
background-position: 0% 50%
}
25% {
background-position: 60% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
body {overflow-x: hidden;}
@media only screen and (max-width: 736px) {
#header{
padding-top: 120px;
position: relative;
}
}
@media only screen and (max-width: 736px) {
#team{
display: none;
}
}
@media only screen and (min-width: 736px) {
#cal{
display: none;
}
}
#im1{
padding-left: 240px;
display: inline-block;
}
#im2{
padding-top:50px;
padding-left: 300px;
}
#im3{
padding-left: 450px;
}
#ourspon{
padding-top: 40px;
}
#cld{
padding-left:260px;
font-family: Raleway;
font-size: 28px;
}
#item{
display: inline-block;
}
</style>
<link rel="stylesheet" href="assets/css/bootstrap.min.css"/>
<link rel="stylesheet" href="assets/css/font-awesome.min.css"/>
<link rel="stylesheet" href="assets/css/animate.css"/>
<link rel="stylesheet" href="assets/css/owl.carousel.css"/>
<link rel="stylesheet" href="assets/css/style.css"/>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129735767-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129735767-1');
</script>
<link rel="stylesheet" href="sdhacks.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body class="is-preload">
<body class="is-preload">
<header id="mlhnav">
<div class="nav" id="top-nav">
<nav class="navbar navbar-expand-lg navbar-light nav__items">
<img class="ml-auto mr-auto nav__logo" href="#" src="assets/img/logo.svg"/>
<button class="navbar-toggler nav__toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item nav__item text-center">
<a class="nav-link" href="#about"><strong>ABOUT</strong></a>
</li>
<li class="nav-item nav__item text-center">
<a class="nav-link" href="#past"><strong>PAST EVENTS</strong></a>
</li>
<li class="nav-item nav__item text-center">
<a class="nav-link" href="#schedule"><strong>SCHEDULE</strong></a>
</li>
<li class="nav-item nav__item text-center">
<a class="nav-link" href="#ourspon"><strong>SPONSORS</strong></a>
</li>
<li class="nav-item nav__item text-center">
<a class="nav-link" href="#contact"><strong>CONTACT</strong></a>
</li>
<li class="nav-item nav__item text-center">
<a class="nav-link" href="codeofconduct.pdf"><strong>RULES</strong></a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!-- Header -->
<div id="header">
<img src="images/KH Logo.png" height="120px;">
<br><br>
<h1>KarunyaHacks</h1>
<p>KarunyaHacks is a student hacking community which is affiliated to <br /> <a href="http://karunya.edu/">Karunya Institute of Technology and Sciences</a>.</p>
</div>
<!-- Main -->
<div id="about" style="z-index: -20">
<div id="main" >
<header class="major container medium" style="width: 65%;">
<h2>About us</h2>
<p>
We aim to serve students in their professional pursuit of research and industry interests.Students take up challenges to solve problems in areas related to Water, Food, Health and Energy through scientific innovation and technological research. We conduct events and hackathons which nurtures the capabilities of students in our community.
<br>
<br>
Hackathon and events conducted by our community enriches their passion towards digital learning.
</p>
</header>
</div>
</div>
<div class="box alt container" id ="past" style="margin-top: -150px;z-index: 50">
<header class="major container medium" style="width: 65%;">
<h2>     Past   Events</h2>
</header>
<section class="feature left">
<a href="#" class="image"><img src="images/pic9.jpg" alt="" class="mySlides"/>
<img src="images/pic10.jpg" alt="" class="mySlides"/>
<img src="images/pic11.jpg" alt="" class="mySlides"/>
<img src="images/pic12.jpg" alt="" class="mySlides"/>
</a>
<div class="content">
<h3>Hacking with Amazon Alexa</h3>
<p>We have conducted Hacking with Amazon Alexa workshop in association with MLH Local Host continuously for the past two years.During this workshop participants will be taught the basics of how to build skills for Amazon Alexa to run on Alexa devices like the Amazon Tap or Echo.
</div>
</section>
<section class="feature right">
<a href="#" class="image"><img src="images/pic6.jpg" alt="" class="mySlides1"/>
<img src="images/pic8.jpg" alt="" class="mySlides1"/>
<img src="images/pic7.jpg" alt="" class="mySlides1"/>
<img src="images/pic5.jpg" alt="" class="mySlides1"/>
</a>
<div class="content">
<h3>Hack the Technical Interview: Algorithms Practice</h3>
<p>In association with MLH Local Host we conducted Hack the Technical Interview workshop. <br>
During this workshop, students learned strategies to perform better in technical interviews. </p>
</div>
</section>
<section class="feature left">
<a href="#" class="image"><img src="images/pic01.jpg" alt="" class="mySlides2"/>
<img src="images/pic02.jpg" alt="" class="mySlides2"/>
<img src="images/pic03.jpg" alt="" class="mySlides2"/>
<img src="images/pic4.jpg" alt="" class="mySlides2"/>
</a>
<div class="content">
<h3>Introduction to Docker</h3>
<p>During this workshop students were taught the basics of Docker and Software Containers. The workshop covered setting up Docker, running first container, creating a basic web application with Python and Docker, and how to push the Docker Image to DockerHub.</p>
</div>
</section>
<section class="feature right">
<a href="#" class="image"><img src="images/_MG_1978.jpg" alt="" class="mySlides3"/>
<img src="images/_MG_2231.jpg" alt="" class="mySlides3"/>
<img src="images/_MG_2207.JPG" alt="" class="mySlides3"/>
<img src="images/_MG_2311.jpg" alt="" class="mySlides3"/>
</a>
<div class="content">
<h3>MLH Local Hack Day</h3>
<p>A global hackathon and celebration of learning, building, and sharing!.The hackathon was coducted on 4th December 2018 and attendees were made to code a project for 12 hours.</p>
</div>
</section>
<section class="feature left">
<a href="#" class="image"><img src="IMG_20181218_184641.jpg" alt="" class="mySlides4"/>
<img src="IMG_20181218_184716.jpg" alt="" class="mySlides4"/>
<img src="IMG_20181218_205150.jpg" alt="" class="mySlides4"/>
<img src="IMG_20181219_074319.jpg" alt="" class="mySlides4"/>
</a>
<div class="content">
<h3>Python GUI</h3>
<p>Conducted first self-hosted workshop on python using GUI using Tkinter and Django Web framework on 17th Dec 2018.</p>
</div>
</section>
<section class="feature right">
<a href="#" class="image"><img src="img_0111.jpg" alt="" class="mySlides5"/>
<img src="exp6.jpg" alt="" class="mySlides5"/>
<img src="exp4.jpg" alt="" class="mySlides5"/>
<img src="exp2.jpg" alt="" class="mySlides5"/>
</a>
<div class="content">
<h3>Cyber Security Workshop</h3>
<p>KarunyaHacks organized a workshop on "Cyber Security" on 14th Feb lead by Mr. Sathish Kumar in Karunya Institute of Technology and Sciences.
</p>
</div>
</section>
<section class="feature left">
<a href="#" class="image"><img src="IMG_2709.jpg" alt="" class="mySlides6"/>
<img src="IMG_2653.jpg" alt="" class="mySlides6"/>
<img src="IMG_2619.jpg" alt="" class="mySlides6"/>
<img src="img_2584.jpg" alt="" class="mySlides6"/>
</a>
<div class="content">
<h3>Python For Data Science</h3>
<p>Girls Wing of KarunyaHacks conducted a workshop on "Python for Data science" on 20th Feb in order to empower the girl community.The workshop was planned, organized and attended by girl students.</p>
</div>
</section>
</div>
<!--
<div class="box container">
<header>
<h2>A lot of generic stuff</h2>
</header>
<section>
<header>
<h3>Paragraph</h3>
<p>This is the subtitle for this particular heading</p>
</header>
<p>Phasellus nisl nisl, varius id <sup>porttitor sed pellentesque</sup> ac orci. Pellentesque
habitant <strong>strong</strong> tristique <b>bold</b> et netus <i>italic</i> malesuada <em>emphasized</em> ac turpis egestas. Morbi
leo suscipit ut. Praesent <sub>id turpis vitae</sub> turpis pretium ultricies. Vestibulum sit
amet risus elit.</p>
</section>
<section>
<header>
<h3>Blockquote</h3>
</header>
<blockquote>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget.
tempus euismod. Vestibulum ante ipsum primis in faucibus.</blockquote>
</section>
<section>
<header>
<h3>Divider</h3>
</header>
<p>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra
ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel. Praesent nec orci
facilisis leo magna. Cras sit amet urna eros, id egestas urna. Quisque aliquam
tempus euismod. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia.</p>
<hr />
<p>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra
ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel. Praesent nec orci
facilisis leo magna. Cras sit amet urna eros, id egestas urna. Quisque aliquam
tempus euismod. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia.</p>
</section>
<section>
<header>
<h3>Unordered List</h3>
</header>
<ul class="default">
<li>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</li>
<li>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</li>
<li>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</li>
<li>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</li>
</ul>
</section>
<section>
<header>
<h3>Ordered List</h3>
</header>
<ol class="default">
<li>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</li>
<li>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</li>
<li>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</li>
<li>Donec consectetur vestibulum dolor et pulvinar. Etiam vel felis enim, at viverra ligula. Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</li>
</ol>
</section>
<section>
<header>
<h3>Table</h3>
</header>
<div class="table-wrapper">
<table class="default">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>45815</td>
<td>Something</td>
<td>Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</td>
<td>29.99</td>
</tr>
<tr>
<td>24524</td>
<td>Nothing</td>
<td>Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</td>
<td>19.99</td>
</tr>
<tr>
<td>45815</td>
<td>Something</td>
<td>Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</td>
<td>29.99</td>
</tr>
<tr>
<td>24524</td>
<td>Nothing</td>
<td>Ut porttitor sagittis lorem, quis eleifend nisi ornare vel.</td>
<td>19.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3"></td>
<td>100.00</td>
</tr>
</tfoot>
</table>
</div>
</section>
<section>
<header>
<h3>Form</h3>
</header>
<form method="post" action="#">
<div class="row">
<div class="col-6 col-12-mobilep">
<label for="name">Name</label>
<input class="text" type="text" name="name" id="name" value="" placeholder="John Doe" />
</div>
<div class="col-6 col-12-mobilep">
<label for="email">Email</label>
<input class="text" type="text" name="email" id="email" value="" placeholder="[email protected]" />
</div>
<div class="col-12">
<label for="subject">Subject</label>
<input class="text" type="text" name="subject" id="subject" value="" placeholder="Enter your subject" />
</div>
<div class="col-12">
<label for="subject">Message</label>
<textarea name="message" id="message" placeholder="Enter your message" rows="6"></textarea>
</div>
<div class="col-12">
<ul class="actions special">
<li><input type="submit" value="Send" /></li>
<li><input type="reset" value="Reset" class="alt" /></li>
</ul>
</div>
</div>
</form>
</section>
</div>
-->
<footer class="major container medium" id="schedule">
<h3>Upcoming Events</h3>
<p style="font-size: 16px;">Join us on February 18th, 2019 for Web Devlopment Workshop.</p>
<ul class="actions special">
<li><a href="#" class="button">Register here</a></li>
</ul>
</footer>
<iframe id="cal" src="https://calendar.google.com/calendar/embed?src=khacks%40karunya.edu.in&ctz=Asia%2FCalcutta" style="margin-left:13%" width="75%" height="375" frameborder="0" scrolling="no"></iframe>
</div>
<br><br>
<section id="team" class="team">
<div class="main_team_area">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="head_title textwhite text-center margin-top-80">
<h2>SCHEDULE<h2>
<div class="subtitle">
Check Dates for all the upcoming workshop
</div>
<div class="separator"></div>
</div><!-- End off Head_title -->
<div class="main_team">
<ul>
<li>
<div class="single_team_img">
<img src="images/html.png"alt="" />
</div>
<div class="single_team_text">
<h4>Web Devlopment</h4>
<p>18th March 2019</p>
</div>
</li>
<li>
<div class="single_team_img">
<img src="images/ml.png" alt="" />
</div>
<div class="single_team_text">
<h4>Machine Learning Workshop (only Womens)</h4>
<p>19th March 2019</p>
</div>
</li>
<li>
<div class="single_team_img">
<img src="images/app.png" alt="" />
</div>
<div class="single_team_text">
<h4>Application Devlopment Workshop (MLH)</h4>
<p>23 March 2019</p>
</div>
</li>
<li>
<div class="single_team_img">
<img src="images/block.jpeg" alt="" />
</div>
<div class="single_team_text">
<h4>Blockchain Workshop (MLH)</h4>
<p>26 March 2019</p>
</div>
</li>
</ul>
</div>
</div><!-- End of main team contant -->
</div>
</div><!-- End of container -->
</div>
</section><!-- End off Team Section -->
<div id="spons">
<div class="container-fluid">
<h2 id="ourspon">OUR SPONSORS</h2>
<br><br>
<div id="item">
<a id = "im1" href="https://www.znetlive.com/" target="_blank"><img src="https://www.znetlive.com/images/logo.png" class="big-logo" alt="ZNETLIVE" title="ZNETLIVE" height="58px"></a>
<p id="cld">(Cloud Partner)</p>
</div>
<a id="im2" href="https://www.stickermule.com/unlock?ref_id=0535521701&utm_content=250x250&utm_medium=embed&utm_source=invite" target="_blank"><img alt="Custom Stickers, Die Cut Stickers, Bumper Stickers - Sticker Mule" border="0" height="250" src="https://res.cloudinary.com/print-bear/image/upload/v1531752798/banners/stickermule-invite-friends-square.jpg" width="250" /></a>
<a id="im3" href="https://www.gatsbyjs.org/" target="_blank"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDYgMjgiPgogIDxwYXRoIGQ9Ik02Mi45IDEyaDIuOHYxMGgtMi44di0xLjNjLTEgMS41LTIuMyAxLjYtMy4xIDEuNi0zLjEgMC01LjEtMi40LTUuMS01LjMgMC0zIDItNS4zIDQuOS01LjMuOCAwIDIuMy4xIDMuMiAxLjZWMTJ6bS01LjIgNWMwIDEuNiAxLjEgMi44IDIuOCAyLjggMS42IDAgMi44LTEuMiAyLjgtMi44IDAtMS42LTEuMS0yLjgtMi44LTIuOC0xLjYgMC0yLjggMS4yLTIuOCAyLjh6bTEzLjUtMi42VjIyaC0yLjh2LTcuNmgtMS4xVjEyaDEuMVY4LjZoMi44VjEyaDEuOXYyLjRoLTEuOXptOC41IDBjLS43LS42LTEuMy0uNy0xLjYtLjctLjcgMC0xLjEuMy0xLjEuOCAwIC4zLjEuNi45LjlsLjcuMmMuOC4zIDIgLjYgMi41IDEuNC4zLjQuNSAxIC41IDEuNyAwIC45LS4zIDEuOC0xLjEgMi41cy0xLjggMS4xLTMgMS4xYy0yLjEgMC0zLjItMS0zLjktMS43bDEuNS0xLjdjLjYuNiAxLjQgMS4yIDIuMiAxLjIuOCAwIDEuNC0uNCAxLjQtMS4xIDAtLjYtLjUtLjktLjktMWwtLjYtLjJjLS43LS4zLTEuNS0uNi0yLjEtMS4yLS41LS41LS44LTEuMS0uOC0xLjkgMC0xIC41LTEuOCAxLTIuMy44LS42IDEuOC0uNyAyLjYtLjcuNyAwIDEuOS4xIDMuMiAxLjFsLTEuNCAxLjZ6bTYuMS0xLjFjMS0xLjQgMi40LTEuNiAzLjItMS42IDIuOSAwIDQuOSAyLjMgNC45IDUuM3MtMiA1LjMtNSA1LjNjLS42IDAtMi4xLS4xLTMuMi0xLjZWMjJIODNWNS4yaDIuOHY4LjF6bS0uMyAzLjdjMCAxLjYgMS4xIDIuOCAyLjggMi44IDEuNiAwIDIuOC0xLjIgMi44LTIuOCAwLTEuNi0xLjEtMi44LTIuOC0yLjgtMS43IDAtMi44IDEuMi0yLjggMi44em0xMyAzLjVMOTMuNyAxMkg5N2wzLjEgNS43IDIuOC01LjdoMy4ybC04IDE1LjNoLTMuMmwzLjYtNi44ek01NCAxMy43aC03djIuOGgzLjdjLS42IDEuOS0yIDMuMi00LjYgMy4yLTIuOSAwLTUtMi40LTUtNS4zUzQzLjEgOSA0NiA5YzEuNiAwIDMuMi44IDQuMiAyLjFsMi4zLTEuNUM1MSA3LjUgNDguNiA2LjMgNDYgNi4zYy00LjQgMC04IDMuNi04IDguMXMzLjQgOC4xIDggOC4xIDgtMy42IDgtOC4xYy4xLS4zIDAtLjUgMC0uN3oiLz4KICA8cGF0aCBkPSJNMjUgMTRoLTd2Mmg0LjhjLS43IDMtMi45IDUuNS01LjggNi41TDUuNSAxMWMxLjItMy41IDQuNi02IDguNS02IDMgMCA1LjcgMS41IDcuNCAzLjhsMS41LTEuM0MyMC45IDQuOCAxNy43IDMgMTQgMyA4LjggMyA0LjQgNi43IDMuMyAxMS42bDEzLjIgMTMuMkMyMS4zIDIzLjYgMjUgMTkuMiAyNSAxNHptLTIyIC4xYzAgMi44IDEuMSA1LjUgMy4yIDcuNiAyLjEgMi4xIDQuOSAzLjIgNy42IDMuMkwzIDE0LjF6IiBmaWxsPSIjZmZmIiAvPgogIDxwYXRoIGQ9Ik0xNCAwQzYuMyAwIDAgNi4zIDAgMTRzNi4zIDE0IDE0IDE0IDE0LTYuMyAxNC0xNFMyMS43IDAgMTQgMHpNNi4yIDIxLjhDNC4xIDE5LjcgMyAxNi45IDMgMTQuMkwxMy45IDI1Yy0yLjgtLjEtNS42LTEuMS03LjctMy4yem0xMC4yIDIuOUwzLjMgMTEuNkM0LjQgNi43IDguOCAzIDE0IDNjMy43IDAgNi45IDEuOCA4LjkgNC41bC0xLjUgMS4zQzE5LjcgNi41IDE3IDUgMTQgNWMtMy45IDAtNy4yIDIuNS04LjUgNkwxNyAyMi41YzIuOS0xIDUuMS0zLjUgNS44LTYuNUgxOHYtMmg3YzAgNS4yLTMuNyA5LjYtOC42IDEwLjd6IiBmaWxsPSIjNjM5Ii8+Cjwvc3ZnPg==" class="css-f9qviq" alt="Gatsby Logo" aria-hidden="true" height="80px"></a>
</div>
</div>
<!-- Team Section -->
<div id="sponsors" >
<div id="main" style="z-index: -50">
<header class="major container medium" style="width: 85%;">
<h2>Why Sponsor Us</h2>
<p>
Demo your API during the event or showcase your hardware/devices enabling students to tinker and create, while also receiving invaluable feedback to further improve your product.
<br>
<br>
Showcasing your company brand during the Hackathon, allows you a better platform to broadcast your
company stature, thus boosting brand recognition, hence encouraging students to know more about your company
<br>
<br>
Also we will promote your brand throughout our event through social media platforms and other platforms
</p>
<!--
<p>Tellus erat mauris ipsum fermentum<br />
etiam vivamus nunc nibh morbi.</p>
-->
</header>
</div>
</div>
<div style="z-index: 99;margin-top:-190px ">
<section style="margin-top: -50px">
<h1 class="headme">Sponsorship Tiers</h1>
<div class="tbl-header">
<table cellpadding="0" cellspacing="0" border="0" class="tableme">
<thead>
<tr>
<th class="thme"></th>
<th class="thme">Rs 5000</th>
<th class="thme">Rs 10000</th>
<th class="thme">Rs 15000</th>
<th class="thme">Rs 20000</th>
</tr>
</thead>
</div>
<div class="tbl-content">
<tbody>
<tr>
<th class="thme" colspan="5">General</th>
</tr>
<tr>
<td class="tdme">Send Resource Person</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
<tr>
<td class="tdme">Get Hardware </td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
<tr>
<td class="tdme">Sponsor Meal</td>
<td class="tdme">
</td>
<td class="tdme">
<div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme">
<div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
<tr>
<td class="tdme"> Judges </td>
<td class="tdme">
</td>
<td class="tdme">
</td>
<td class="tdme">
<div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
<tr>
<td class="tdme">Guest House</td>
<td class="tdme">
</td>
<td class="tdme">
</td>
<td class="tdme">
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
<tr>
<th class="thme" colspan="5">Branding</th>
</tr>
<tr>
<td class="tdme">Website Logo </td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme">
<div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
<tr>
<td class="tdme">Social Media </td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
<tr>
<td class="tdme">Sponsorship Prizes And Swags </td>
<td class="tdme">
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
<tr>
<td class="tdme">Hacker Shirt logo </td>
<td class="tdme">
</td>
<td class="tdme">
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
<tr>
<td class="tdme">Banners,Co-hosted by you</td>
<td class="tdme">
</td>
<td class="tdme">
</td>
<td class="tdme">
</td>
<td class="tdme"> <div class="round">
<input type="checkbox" id="checkbox" checked readonly/>
<label for="checkbox"></label>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<!-- Footer -->
<div id="footer" style="z-index: -1;">
<div class="container medium">
<header class="major last">
<h2>Frequently Asked Questions</h2>
</header>
<div class="val">
<div class="container val" id="contact" >
<div >
<p id="q1" class="qw">1) How is KarunyaHacks beneficial?</p>
<p id="a1" class="qa">A: It provides students a chance to explore their technical Skills.</p>
</div>
<div>
<p id="q2" class="qw">2) How often does karunyaHacks host events?</p>
<p id="a2" class="qa">A: We host two events very month. </p>
</div>
<div>
<p id="q3" class="qw">3) What should I bring?</p>
<p id="a3" class="qa">A: All participants are requested to bring their personal laptop and any related resources required to design your dream.</p>
</div>
<div>
<p id="q4" class="qw">4) Is coding experince required?</p>
<p id="a4"class="qa">A: Ofcourse not! All students who want to learn about technology,design and building innovative products are welcome.</p>
</div>
<div>
<p id="q5" class="qw">5) I have another question?</p>
<p id="a5"class="qa">A: Not a problem,shoot us an email at <b>[email protected] </b> and we will get back with you ASAP.</p>
</div>
<!-- <div>
<p id="q11" class="qw">11) How can I connect with the Megaplay team through Social Media?</p>
<p id="a11" class="qa social-links" align="center">
A: Our official social media handles are:
<a href="https://www.instagram.com/karunyamegaplay/"><i class="fa fa-instagram"></i></a>
<a href="https://www.facebook.com/KarunyaMegaPlay/"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com/KarunyaMegaPlay"><i class="fa fa-twitter"></i></a></p>
</div>
-->
</div>
</div>
<ul class="icons">
<li><a href="https://www.twitter.com/karunyahacks" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://www.facebook.com/karunyahacks/?ref=br_rs" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="https://www.instagram.com/karunyahacks" class="icon fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon fa-github"><span class="label">Github</span></a></li>
<li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a></li>
</ul>
<ul class="copyright">
<li>© KarunyaHacks. All rights reserved.</li><li>Design: <a href="#">KarunyaHacks</a></li>
</ul>
</div>
</div>
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
var y = document.getElementsByClassName("mySlides1");
var z = document.getElementsByClassName("mySlides2");
var a = document.getElementsByClassName("mySlides3");
var b = document.getElementsByClassName("mySlides4");
var c = document.getElementsByClassName("mySlides5");
var d = document.getElementsByClassName("mySlides6");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
y[i].style.display = "none";
z[i].style.display = "none";
a[i].style.display = "none";
b[i].style.display = "none";
d[i].style.display = "none";
c[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
y[myIndex-1].style.display = "block";
z[myIndex-1].style.display = "block";
a[myIndex-1].style.display = "block";
b[myIndex-1].style.display = "block";
c[myIndex-1].style.display = "block";
d[myIndex-1].style.display = "block";
setTimeout(carousel, 2500); // Change image every 2 seconds
}
</script>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<!-- <script src="assets/js/dynamics.js"></script> -->
<script src="assets/js/jquery-2.1.4.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/isotope.pkgd.min.js"></script>
<script src="assets/js/owl.carousel.min.js"></script>
<script src="assets/js/jquery.owl-filter.js"></script>
<script src="assets/js/magnific-popup.min.js"></script>
<script src="assets/js/circle-progress.min.js"></script>
<script type="text/javascript">
$("#q1").click(function(){
$("#a1").show();
});
$("#a1").click(function(){
$("#a1").hide();
});
$("#q2").click(function(){
$("#a2").show();
});
$("#a2").click(function(){
$("#a2").hide();
});
$("#q3").click(function(){
$("#a3").show();