forked from SouravInsights/Emisha
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
861 lines (723 loc) · 33.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Emisha : Home</title>
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="assets/images/favicon.ico.png"/>
<!-- Font Awesome -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<!-- Bootstrap -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Slick slider -->
<link href="assets/css/slick.css" rel="stylesheet">
<!-- Theme color -->
<link id="switcher" href="assets/css/theme-color/default-theme.css" rel="stylesheet">
<!-- Main Style -->
<link href="style.css" rel="stylesheet">
<link rel="stylesheet" href="style1.css">
<link rel="stylesheet" href="style2.css">
<link rel="stylesheet" href="stylesheets/base.css">
<link rel="stylesheet" href="stylesheets/skeleton.css">
<link rel="stylesheet" href="stylesheets/layout.css">
<!-- Fonts -->
<!-- Open Sans for body font -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800" rel="stylesheet">
<!-- Montserrat for title -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Start Header -->
<header id="mu-hero" class="" role="banner">
<!-- Start menu -->
<nav class="navbar navbar-fixed-top navbar-default mu-navbar">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Logo -->
<a class="navbar-brand" href="index.html">Emisha</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav mu-menu navbar-right">
<li><a href="#mu-hero">Home</a></li>
<li><a href="">About Us</a></li>
<li><a href="#mu-schedule">Schedule</a></li>
<li><a href="#mu-speakers">Speakers</a></li>
<li><a href="#mu-register">Register</a></li>
<li><a href="#mu-sponsors">Sponsors</a></li>
<li><a href="#mu-contact">Contact</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- End menu -->
<div class="mu-hero-overlay">
<div class="container">
<div class="mu-hero-area">
<!-- Start hero featured area -->
<div class="mu-hero-featured-area">
<!-- Start center Logo -->
<!-- End center Logo -->
<div class="mu-hero-featured-content">
<a class="" href="#"><img src="assets/images/web.png" alt="logo img"></a>
<h2>Web Development Bootcamp</h2>
<p class="mu-event-date-line">14th October 2018. Bhubaneswar, Odisha</p>
<div class="mu-event-counter-area">
<div id="mu-event-counter">
</div>
</div>
</div>
</div>
<!-- End hero featured area -->
</div>
</div>
</div>
</header>
<!-- End Header -->
<!-- Start main content -->
<main role="main">
<div id="left"></div>
<div id="right"></div>
<div id="top"></div>
<div id="bottom"></div>
<div id="color1">
<h1 class="remove-bottom">About Us</h1>
</div>
<div class="container">
<div class="sixteen columns">
<p>"Emisha" is a non-profit tech community, that runs Free workshops, Special events, Seminars, Hackathon, Coding competitions etc. It also offers valuable leadership experiences, connections to professional organizations, networking opportunities, and special events that mold a student’s perspective and power of virtualization– during the college years and beyond. Our comunity is open to everyone who has a williingness to learn and passionate about tech. We also welcome those students who don't even belong to computer science so that can be a part of diverse network. </p>
</div>
</div>
<div id="color2">
<h1 class="remove-bottom">Our mission</h1>
</div>
<div class="container">
<div class="sixteen columns">
<p>Our community's primary goal is to spread the computer education awareness through out every Regional schools and help students in rural areas of Odisha to gain a strong knowledge in Computers. We're trying to reach our to the unreached parts of odisha. Women participation in the tech activities is slightly inclined but recently due to Women Techmakers Group, they are showing more interest. The ratio is still very low but we expect it'll grow in near future. We want to host more frequent talks, events to get everyone involved in tech related activities.</p>
</div>
</div>
<div id="color1">
<h1 class="remove-bottom">Our plan</h1>
</div>
<div class="container">
<div class="sixteen columns">
<p>We will measure success based on the number of people who show up during each workshop. We might also ask them to fill out surveys to see how they feel about the event. The frequency of iterating the community plans will depend on how many people show up to the workshops. If the workshops attract a good number of audience, we'll plan to organize a big hackathon for interested students.</p>
</div>
</div>
<div id="color2">
</div>
<div class="container">
</div>
<!-- Start Video -->
<section id="mu-video">
<div class="mu-video-overlay">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-video-area">
<h2>Watch Our Promo Video</h2>
<a class="mu-video-play-btn" href="https://youtu.be/kMZ8Hl9SyPY"><i class="fa fa-play" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- Start Video content -->
<div class="mu-video-content">
<div class="mu-video-iframe-area">
<a class="mu-video-close-btn" href="#"><i class="fa fa-times" aria-hidden="true"></i></a>
<iframe width="560" height="315" src="https://www.youtube.com/embed/kMZ8Hl9SyPY" frameborder="0" gesture="media" allowfullscreen></iframe>
</div>
</div>
<!-- End Video content -->
</section>
<!-- End Video -->
<!-- Start Schedule -->
<section id="mu-schedule">
<div class="container">
<div class="row">
<div class="colo-md-12">
<div class="mu-schedule-area">
<div class="mu-title-area">
<h2 class="mu-title">Upcoming Events</h2>
<p>Here’s a rough breakdown of the upcoming events, that we're hosting by Emisha. A more detailed schedule will be made available close to the event.</p>
</div>
<div class="mu-schedule-content-area">
<!-- Nav tabs -->
<ul class="nav nav-tabs mu-schedule-menu" role="tablist">
<li role="presentation" class="active"><a href="#first-day" aria-controls="first-day" role="tab" data-toggle="tab">WebRage 2018</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content mu-schedule-content">
<div role="tabpanel" class="tab-pane fade mu-event-timeline in active" id="first-day">
<center><h2>schedule</h2></center>
<ul>
<li>
<div class="mu-single-event">
<p class="mu-event-time">9.30 AM</p>
<h3>Introduction & Set Up</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">10.00 AM</p>
<h3>Fundamentals of HTML</h3>
<span> Tags, Elements, Lists, HTML Structure </span>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">11.00 AM</p>
<h3>Fundamentals of CSS</h3>
<span>CSS Selectors & Positioning</span>
</div>
</li>
<li>
<div class="mu-single-event">
<p class="mu-event-time">11.30 AM</p>
<h3>Building a basic Page</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">12.30 PM</p>
<h3>Introduction to Git & GitHub</h3>
<span>Hands on with GitHub</span>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">1.00 PM</p>
<h3>Hosting using GitHub Pages</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<p class="mu-event-time">1.30 PM</p>
<h3>Lunch Break</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">2.30 PM</p>
<h3>Getting Started with Open Source</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">3.30 PM</p>
<h3>Show and Tell</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">4.00 PM</p>
<h3>Vote of Thanks</h3>
</div>
</li>
</ul>
</div>
<div role="tabpanel" class="tab-pane fade mu-event-timeline" id="second-day">
<center><h2>Live demo with apple ARKit in iOS app in swift & </h2></center>
<ul>
<li>
<div class="mu-single-event">
<p class="mu-event-time">9.30 AM</p>
<h3>Welcome to CS First!</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">10.00 AM</p>
<h3>Intro to Scratch</h3>
<span>By </span>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">10.30 AM</p>
<h3>Build your Game #1</h3>
<span>By </span>
</div>
</li>
<li>
<div class="mu-single-event">
<p class="mu-event-time">11.30 PM</p>
<h3>Break</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">11.45 AM</p>
<h3>Build your Game #2</h3>
<span>By </span>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">12.30 AM</p>
<h3>Q&A Session</h3>
<span>By </span>
</div>
</li>
<li>
<div class="mu-single-event">
<p class="mu-event-time">1.00 PM</p>
<h3>Project Showcase</h3>
</div>
</li>
</ul>
</div>
<div role="tabpanel" class="tab-pane fade mu-event-timeline" id="third-day">
<center><h2>WebRage 2018</h2></center>
<ul>
<li>
<div class="mu-single-event">
<p class="mu-event-time">9.00 AM</p>
<h3>Registration</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">9.30 AM</p>
<h3>Intro to HTML, CSS, JS</h3>
<span>By (To be added)</span>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">11.30 AM</p>
<h3>Code your website</h3>
<span>By (To be added)</span>
</div>
</li>
<li>
<div class="mu-single-event">
<p class="mu-event-time">2.00 PM</p>
<h3>Break</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">2.30 PM</p>
<h3>Code your website</h3>
<span>By (To be added)</span>
</div>
</li>
<li>
<div class="mu-single-event">
<img src="assets/images/speaker-1.jpg" alt="event speaker">
<p class="mu-event-time">3.30 PM</p>
<h3>Intro to Firebase</h3>
<span>By (To be added)</span>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Schedule -->
<!-- Start Speakers -->
<section id="mu-speakers">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-speakers-area">
<div class="mu-title-area">
<h2 class="mu-title">Our Past Event Speakers</h2>
<p></p>
</div>
<!-- Start Speakers Content -->
<div class="mu-speakers-content">
<div class="mu-speakers-slider">
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="assets/images/speaker-2.jpg" alt="speaker img">
<div class="mu-single-speakers-info">
<h3>Tadit Dah</h3>
<p>Senior Software Engineer</p>
<ul class="mu-single-speakers-social">
<li><a href="https://www.facebook.com/taditdash"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/taditdash"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/taditdash/"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<!-- End single speaker -->
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="assets/images/speaker-3.jpg" alt="speaker img">
<div class="mu-single-speakers-info">
<h3>Nirmal Hota</h3>
<p>Technical Project Lead</p>
<ul class="mu-single-speakers-social">
<li><a href="https://www.facebook.com/nirmal.hota.14"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/nirmalhota"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/nirmalhota/"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<!-- End single speaker -->
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="assets/images/speaker-4.jpg" alt="speaker img">
<div class="mu-single-speakers-info">
<h3>Jayant Rajwani</h3>
<p>Software Engineer</p>
<ul class="mu-single-speakers-social">
<li><a href="https://www.facebook.com/jayantrajwani"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/jayantrajwani"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/jayantrajwani/"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<!-- End single speaker -->
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="assets/images/speaker-5.jpg" alt="speaker img">
<div class="mu-single-speakers-info">
<h3>Abhijit Pattnaik </h3>
<p>Founder of Emotronic</p>
<ul class="mu-single-speakers-social">
<li><a href="https://www.facebook.com/abhijitashru?ref=br_rs"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/AshruABHIJIT"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/abhijitashru/"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Speakers -->
<!-- Start Venue -->
<section id="mu-venue">
<div class="mu-venue-area">
<div class="row">
<div class="col-md-6">
<div class="mu-venue-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m23!1m12!1m3!1d119791.86779920587!2d85.6525083622957!3d20.238259605233566!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m8!3e6!4m0!4m5!1s0x3a19a9ac65b76c7d%3A0x91f0f4d506f7c20b!2sgita!3m2!1d20.2382735!2d85.7225488!5e0!3m2!1sen!2sin!4v1518341612311" width="100%" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-6">
<div class="mu-venue-address">
<h2>VENUE <i class="fa fa-chevron-right" aria-hidden="true"></i></h2>
<h3>Gandhi Institute For Technological Advancement</h3>
<h4>Badaraghunathpur, Beside NH-5, Janla, Bhubaneswar, Odisha 752054</h4>
<p></p>
</div>
</div>
</div>
</div>
</section>
<!-- End Venue -->
<!-- Start Register -->
<section id="mu-register">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-register-area">
<div class="mu-title-area">
<h2 class="mu-title">Register Form</h2>
<p>"Emisha" brings you an immersive and premier school level workshop that gives a basic idea about computer science fundamentals by designing games using Scratch. The registration is completely FREE, Come, be a part of it..</p>
</div>
<div class="mu-register-content">
<a class="typeform-share button" https://emisha.typeform.com/to/snc8PI" data-mode="popup" style="display:inline-block;text-decoration:none; background: #ee0979; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ff6a00, #ee0979); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ff6a00, #ee0979); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */;color:white;cursor:pointer;font-family:Helvetica,Arial,sans-serif;font-size:20px;line-height:50px;text-align:center;margin:0;height:50px;padding:0px 33px;border-radius:25px;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;" target="_blank">Register Now </a> <script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Register -->
<!-- Start FAQ -->
<section id="mu-faq">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-faq-area">
<div class="mu-title-area">
<h2 class="mu-title">FAQ</h2>
<p>At Emisha, we strive to bring together developers to participate in the workshop irrespective of gender, race, sexual orientation, socioeconomic background or ethnicity. We usually try to keep things simple. Read our FAQs to phase out ambiguity.</p>
</div>
<div class="mu-faq-content">
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true">
<span class="fa fa-angle-down"></span>What is Hackathon?
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
A hackathon, is social coding event that brings computer programmers and other interested people together to improve upon or build a new software project.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true">
<span class="fa fa-angle-down"></span>When will the application close?
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
The application period will close on 2nd october at 4:00 pm (IST). We evaluate applications on a rolling basis and acceptances will be via email. Once accepted, you’ll be receving a confirmation E-mail.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true">
<span class="fa fa-angle-down"></span>What should I bring?
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
Weapons of any kind, drugs, or alcohol. If you’re not sure whether something will be okay, please ask ahead of time!
And you also bring laptop, phone, chargers, any sleeping equipment you might want (we'll be providing mattresses).
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true">
<span class="fa fa-angle-down"></span>Who can participate?
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
Everyone is welcome to apply, students from differemt branch are also allowed. If you are under 18 years of age, we’ll need a parental consent form.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
<span class="fa fa-angle-up"></span> What is the price of the ticket?
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
There is no cost of the ticket. This event is free for intrested students.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseThree">
<span class="fa fa-angle-up"></span> How many seats are there?
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse">
<div class="panel-body">
There are total 180 seats
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseFour">
<span class="fa fa-angle-up"></span> In which floor this event will happen?
</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse">
<div class="panel-body">
You will get the directions there.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseFive">
<span class="fa fa-angle-up"></span> How should I dress ?
</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse">
<div class="panel-body">
There is no dress code. Wear whatever suits you.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End FAQ -->
<!-- Start Sponsors -->
<section id="mu-sponsors">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-sponsors-area">
<div class="mu-title-area">
<h2 class="mu-title">Our Sponsors</h2>
<p>We're looking for more sponsors, to help us arrange the event in a better way. If you're interested to sponsor our event please reach us on our official facebook page <a href="https://www.facebook.com/getemisha" target="_blank">here</a>.</p>
</div>
<!-- Start spnonsors brand logo -->
<div class="mu-sponsors-content">
<div class="row">
<div class="col-md-2 col-sm-4 col-xs-4">
<div class="mu-sponsors-single">
<img src="assets/images/sponsor-logo-1.png" alt="Brand Logo">
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-4">
<div class="mu-sponsors-single">
<img src="assets/images/sponsor-logo-2.png" alt="Brand Logo">
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-4">
<div class="mu-sponsors-single">
<img src="assets/images/sponsor-logo-3.png" alt="Brand Logo">
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-4">
<div class="mu-sponsors-single">
<img src="assets/images/sponsor-logo-4.png" alt="Brand Logo">
</div>
</div>
</div>
</div>
<!-- End spnonsors brand logo -->
</div>
</div>
</div>
</div>
</section>
<!-- End Sponsors -->
<!-- Start Contact -->
<section id="mu-contact">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-contact-area">
<div class="mu-title-area">
<h2 class="mu-heading-title">Contact Us</h2>
<p>Feel free to have a contact, if you have any queries related to the event or discuss about any tech related topics.</p>
</div>
<!-- Start Contact Content
<div class="mu-contact-content">
<div class="row">
<div class="col-md-12">
<div class="mu-contact-form-area">
<div id="form-messages"></div>
<form id="ajax-contact" method="post" action="mailer.php" class="mu-contact-form">
<div class="form-group">
<input type="text" class="form-control" placeholder="Name" id="name" name="name" required>
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter Email" id="email" name="email" required>
</div>
<div class="form-group">
<textarea class="form-control" placeholder="Message" id="message" name="message" required></textarea>
</div>
<button type="submit" class="mu-send-msg-btn"><span>SUBMIT</span></button>
</form>
</div>
</div>
</div>
</div>
-->
<!-- End Contact Content -->
</div>
</div>
</div>
</div>
</section>
<!-- End Contact -->
</main>
<!-- End main content -->
<!-- Start footer -->
<footer id="mu-footer" role="contentinfo">
<div class="container">
<div class="mu-footer-area">
<div class="mu-footer-top">
<div class="mu-social-media">
<a href="https://www.facebook.com/getemisha/"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="https://www.instagram.com/getemisha/"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
</div>
</div>
<div class="mu-footer-bottom">
<p class="mu-copy-right">© Copyright <a rel="nofollow" href="https://www.facebook.com/getemisha/">Emisha 2018</a>. All right reserved.</p>
</div>
</div>
</div>
</footer>
<!-- End footer -->
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- Bootstrap -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Slick slider -->
<script type="text/javascript" src="assets/js/slick.min.js"></script>
<!-- Event Counter -->
<script type="text/javascript" src="assets/js/jquery.countdown.min.js"></script>
<!-- Ajax contact form -->
<script type="text/javascript" src="assets/js/app.js"></script>
<!-- Custom js -->
<script src="js/index.js"></script>
<script type="text/javascript" src="assets/js/custom.js"></script>
</body>
</html>