This repository has been archived by the owner on May 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcultural.html
980 lines (864 loc) · 65.1 KB
/
cultural.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Font -->
<link href="fonts.css" rel="stylesheet">
<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>Cultural Events | Aether 2019</title>
<!-- Favicon -->
<link rel="shortcut icon" type="image/icon" href="assets/images/festLogo.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 -->
<!-- Theme color -->
<link id="switcher" href="assets/css/theme-color/Asthetic Indian.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/animate.min.css" />
<!-- Main Style -->
<link href="style.css" rel="stylesheet">
<!-- Fonts -->
<!-- Open Sans for body font -->
<!-- Montserrat for title -->
<!-- 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]-->
<noscript>
<style>
.es-carousel ul {
display: block;
}
</style>
</noscript>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-148714507-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-148714507-1');
</script>
<script id="img-wrapper-tmpl" type="text/x-jquery-tmpl">
<div class="rg-image-wrapper">
{{if itemsCount > 1}}
<div class="rg-image-nav">
<a href="#" class="rg-image-nav-prev" style="background-image: url('./assets/images/nav1.png'); ">Previous Image</a>
<a href="#" class="rg-image-nav-next" style="background-image: url('./assets/images/nav2.png'); ">Next Image</a>
</div>
{{/if}}
<div class="rg-image"></div>
<div class="rg-loading"></div>
<div class="rg-caption-wrapper">
<div class="rg-caption" style="display:none;">
<p></p>
</div>
</div>
</div>
</script>
</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"><img id="logo_image" src="assets/images/festLogo.png"></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="index.html#mu-hero">Home</a></li>
<li><a href="index.html#mu-about">About Us</a></li>
<li><a href="index.html#mu-video">Promos</a></li>
<li><a href="index.html#mu-schedule">Events</a></li>
<li><a href="index.html#mu-venue">Pro Shows</a></li>
<li><a href="index.html#mu-pricing">Gallery</a></li>
<li><a href="index.html#mu-sponsors">Sponsors</a></li>
<li><a href="index.html#mu-register">Register</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- End menu -->
<div class="mu-hero-overlay">
<div id="bubble">
</div>
<!-- Start hero featured area -->
<canvas id="scene"></canvas>
<input id="copy" type="hidden" />
<div class="mu-event-counter-area">
<div id="mu-event-counter">
</div>
</div>
<!-- End hero featured area -->
</div>
</header>
<!-- End Header -->
<!-- Start main content -->
<main role="main">
<!-- Start Pro Night -->
<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">Cultural Events</h2>
<p class="mu-content">From film and pop culture trivia to mind boggling quizzes, these events are all about having fun with your team while getting to the top!</p>
</div>
<div class="mu-schedule-content-area">
<div class="tab-content mu-schedule-content">
<div role="tabpanel" class="tab-pane fade mu-event-timeline in active"
id="first-day">
<ul>
<li>
<img class="pro" id="dt" src="assets/images/AetherQuiz_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Aether Quiz</h3>
<span class="mu-content">
Get ready to unlock knowledge at the speed of thought as Aether brings
you one of the biggest quizzes in the city. Hosted by the well-known Quiz master
Mr.Sri Ram Burgula.<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="qRules()">Info & Rules
</button>
<div class="mu-event-rules" id="qRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ Date: 9th Nov
<br><br> ⬤ Team size: Max 4 members
<br><br> ⬤ Prize pool: 10k
<br><br> ⬤ Duration: 4 hrs
<br><br> ⬤ Organisers:<br>
Aditya Bhojani- +919819142506
</span>
<br>
<button class="mu-rule-close-button" onclick="qRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="bob" src="assets/images/BOB_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Battle Of Bands</h3>
<span class="mu-content">
This is an epic battle between the bands of Hyderabad. The theme is Versatility! Play minimum 2 songs and all songs should be of different genres.<br>Bands will be judged based on:<br>Quality of music (Vocal and instrumental aptitude)<br>Crowd interaction<br>Song Selection<br>Time<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="bobRules()">Info & Rules
</button>
<div class="mu-event-rules" id="bobRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ Band size: 3-8 members
<br><br> ⬤ Registration Cost: Rs 500 per band
<br><br> ⬤ Prize Pool: 10k
<br><br> ⬤ Organisers:<br>
Abhay: +919666195707<br>
Sarath Nair: +918075850992
</span>
<br>
<button class="mu-rule-close-button" onclick="bobRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="btclock" src="assets/images/BeatTheClock_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Beat The Clock</h3>
<span class="mu-content">
Beat the clock is a fun game event that involves the players to complete a certain funky task under the given time limit given by Mr.Clock. As the player completes each task they rise through the ranks to become the Clock Master!<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="mtwRules()">Info & Rules
</button>
<div class="mu-event-rules" id="mtwRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ Date: 9th Nov
<br><br> ⬤ Team size: 2 members(max)
<br><br> ⬤ Re-entry fee: 30/-
<br><br> ⬤ Prize pool: 3.5k
<br><br> ⬤ Organisers:<br>
Vinuthna - +919121206667<br>
Hitesh - +919652624404
</span>
<br>
<button class="mu-rule-close-button" onclick="mtwRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="panache" src="./assets/images/BrainWars_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Brain Wars</h3>
<span class="mu-content">
Are puzzles and brain teasers your cup of tea? Then look no further, since
this event is the right platform for you to flex your brain. Teams battle against
each other, not with guns or swords, but with their brains.<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="bwRules()"> Info & Rules
</button>
<div class="mu-event-rules" id="bwRules" style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ Brain wars is all about solving puzzles.<br>
There will be 3 knockout rounds<br>
First Round (30 mins) - 7 Questions<br>
Second round (20 mins) - Story mode or riddles (3 stories probably)<br>
Third round (40 mins) - Relay (3 questions). The team that finishes answering the questions first wins.
<br><br> ⬤ Date: 10th Nov
<br><br> ⬤ Team size: 3 members
<br><br> ⬤ Max no. of teams: 20 - 25 teams
<br><br> ⬤ Prize pool: 5k
<br><br> ⬤ Duration: 1.5hrs
<br><br> ⬤ Organisers:<br>
Shuraiq - +919010790100<br>
Jathin - +919676790089
</span>
<br>
<button class="mu-rule-close-button" onclick="bwRules()">
Collapse </button>
</div>
</div>
</li>
<li>
<img class="pro" id="raga" src="assets/images/CC_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Character Collision</h3>
<span class="mu-content">
The most awaited literary event of Aether 2k19, where the creative writers
battle it out with paper and ink to create the wildest and the most well thought-out
story from the given prompts.<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span>
<br>
<button class="mu-rule-button" onclick="ccRules()"> Info & Rules
</button>
<div class="mu-event-rules" id="ccRules" style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ A writing prompt about how two unlikely characters meet will be given to each person. The person with the wildest, most creative, well thought out story wins.
<br><br> ⬤ Date: 9th Nov
<br><br> ⬤ Prize pool: 6k
<br><br> ⬤ Duration: 2 hrs
<br><br> ⬤ Organisers:<br>
Smriti - +917676055864
</span>
<br>
<button class="mu-rule-close-button" onclick="ccRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="Dropping" src="assets/images/DevilsAdvocate_480x360.jpeg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Devil's Advocate</h3>
<span class="mu-content">
Participants must summon their wits and brainpower to convince the judges to agree with
an unpopular opinion that might be so wild it may seem impossible to defend. Thechallenge lies in how well they can think and voice their arguments. In a battle of the
shrewdest only the best will come out on top!<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span>
<br>
<button class="mu-rule-button" onclick="droppingRules()">Info & Rules
</button>
<div class="mu-event-rules" id="droppingRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ Single participant. Participants must summon their wits and brainpower to convince the judges to agree with an unpopular opinion that might be so wild it may seem impossible to defend. The topic will be given on the spot and each participant receives 15 minutes to prepare their argument. Each speaker will get 5 minutes of speaking time. The challenge lies in how well they can think and voice their arguments.
<br><br> ⬤ Date: 10th Nov
<br><br> ⬤ Prize pool: 6k
<br><br> ⬤ Duration: 2 hrs
<br><br> ⬤ Organisers:<br>
Sakshi - +917032352341
</span>
<br>
<button class="mu-rule-close-button" onclick="droppingRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="verve" src="./assets/images/FilmyFungama_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Filmy Fungama</h3>
<span class="mu-content">
Filmy Fungama (F2) is a fun trivia game that tests your knowledge of popular films in
Hyderabad's two most happening film industries (Bollywood and Tollywood). Winning this
game takes more than simple craze for actors or actresses. It takes a level of obsession,
borderline insanity, to cross the finish line and claim victory.<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="ragaRules()"> Info & Rules
</button>
<div class="mu-event-rules" id="ragaRules" style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ There will be 5 rounds. Each Round will be an elimination round and after every round 3-4 Teams will be eliminated.
<br><br> ⬤ Date: 10th Nov
<br><br> ⬤ Team size: 4 - 5 members
<br><br> ⬤ Max no. of teams: 40 - 50 teams
<br><br> ⬤ Prize pool: 5k
<br><br> ⬤ Organisers:<br>
Satvika - +918464989819<br>
Himanshu - +919502780569
</span>
<br>
<button class="mu-rule-close-button" onclick="ragaRules()">
Collapse </button>
</div>
</div>
</li>
<li>
<img class="pro" id="groove" src="assets/images/groove_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Groove</h3>
<span class="mu-content">
Groove brings all elite dancers together to compete in epic battles of artistry, precision and athleticism. Dancers will compete against duos and crews in an unlimited range of dance, including hip-hop, popping, locking, tap, ballet, break dancing, ballroom,and more!
<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="grooveRules()">Info & Rules
</button>
<div class="mu-event-rules" id="grooveRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤The duration dance performance by each team , in any of the rounds should be a minimum of 4 mins to not more than 6 mins. The stage is good ideal for 12 dancers at any point of time. The event will have 2 rounds.<br>Round 1 : This will be a video round where the team will send in a video submission. The crew has to portray at-least 2 distinct dance forms. This round will be an elimination round. Only the top 5 teams will be qualified to Round-2.<br>Round 2: This will be a theme round. The theme: Narrate us a story through your dance, need not be an original.The performance duration should be limited to 3-5 mins. The top 3 teams, receive the allotted prize money.
<br><br> ⬤ Date: 9th Nov
<br><br> ⬤ Prize pool: 20k
<br><br> ⬤ Organisers:<br>
Saisree: +919652602200<br>
Pratulya: +919892246323
</span>
<br>
<button class="mu-rule-close-button" onclick="grooveRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="Sync" src="assets/images/Guesstimate2_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Guesstimate</h3>
<span class="mu-content">
If you love games like taboo, then this is right up your alley! This event has three fun filled rounds that basically deal with guessing and hunting. Make it through all 3 games with your team, and the reward is yours!<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="guessRules()">Info & Rules
</button>
<div class="mu-event-rules" id="guessRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ This event has three fun filled rounds that basically deal with guessing and hunting.<br>TABOO : In this round, one participant of each team has to use actions or words to get their team members to guess the word, but they are not allowed to use some ‘taboo’ words.<br>FINDING WORDS : Two participants from two teams have to find a word based on the theme from the given jumbled table.<br>SHOT IN THE DARK: A famous/funny newspaper article/meme is shown and part of the main heading in it is covered. The whole team must try to guess the main heading.
<br><br> ⬤ Date: 10th Nov
<br><br> ⬤ Team size: 3 - 4 members
<br><br> ⬤ Max no. of teams: 25 teams
<br><br> ⬤ Prize pool: 5k
<br><br> ⬤ Duration: 2.5hrs
<br><br> ⬤ Organisers:<br>
Mythri - +917093121617<br>
Guru Teja - +917032073344
</span>
<br>
<button class="mu-rule-close-button" onclick="guessRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="MasterShot" src="assets/images/MasterShot_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>MasterShot</h3>
<span class="mu-content">
Master shot is a 48 hour long filmmaking contest revolving around a theme,
that involves students to utilise their creative skills in making a short film from
scratch. The competition drives the participants to think on their feet, work as a
team and exhibit their critical thinking skills since they’re on a race against time.<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="msRules()">Info & Rules
</button>
<div class="mu-event-rules" id="msRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ MasterShot is a 48-hour film-making contest that compels participants to utilise their creative and critical thinking skills to make a short film from scratch. Each team will have 48 hours to script, shoot and edit their short films based on the theme given. The films can be shot anywhere with minimum restrictions on the camera equipment used. The durations of the short films along with other necessary details will be provided upon registration. At the end of the 48 hours, teams are required to submit their films through a drive link that will be provided to them. Films that are not shot in the 48 hours and films not relevant to the theme will be disqualified.<br>Finally, all the films will be assessed and ranked by a panel of expert judges, out of which the top few films will be screened in the Amphitheatre of Mahindra Ecole Centrale, during Aether. The top three films will receive a prize pool of 20k and the top 25 teams will receive goodies.
<br><br> ⬤ Date: 9th Nov
<br><br> ⬤ Team Size : 5 members (max) not including the actors
<br><br> ⬤ Prize pool: 20k
<br><br> ⬤ Duration: 48 hrs
<br><br> ⬤ Organisers:<br>
Amulya- - +918374844500
</span>
<br>
<button class="mu-rule-close-button" onclick="msRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="Newkonomy" src="assets/images/Newkonomy_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Newkonomy</h3>
<span class="mu-content">
A market simulation involving customers, investors, suppliers, companies and a lot of
money flowing across. Customers compete against other customers, suppliers against
suppliers and companies against companies. The entity with the most profits at the end ofthe game from each sector wins. Beware though, markets are wavy and crashes are
rampant.<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="newRules()">Info & Rules
</button>
<div class="mu-event-rules" id="newRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ Team Size: 6 for companies<br>
1 customer<br>
1 investor<br>
1 supplier<br>
A market simulation involving customers, investors, suppliers, companies and a lot of money flowing across. Customers compete against other customers, suppliers against suppliers and companies against companies. The entity with the most profits at the end of the game from each sector wins. Beware though, markets are wavy and crashes are rampant.
<br><br> ⬤ Duration: 3 hrs
<br><br> ⬤ Prize money: 5k
<br><br> ⬤ Organisers:<br>
Om Goyal - +918019234091<br>
Abdul Khaliq - +919182135957
</span>
<br>
<button class="mu-rule-close-button" onclick="newRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="nukkad" src="assets/images/SlamPoetry_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Slam Poetry</h3>
<span class="mu-content">
Let the words find you! Boldness and confidence are key in this battle of the best poets.<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="pRules()">Info & Rules
</button>
<div class="mu-event-rules" id="pRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ The ‘poets’ will have about 15-20 mins to compose their poems on a specified topic.<br>Recitation begins and the maximum time limit of each poem is 3 mins. The most expressive and well-composed poems will be the prize-winners.<br>Bonus points if the poem is spoken spontaneously without any written material at hand.
<br><br> ⬤ Date: 9th Nov
<br><br> ⬤ Prize pool: 5k
<br><br> ⬤ Duration: 3 hrs
<br><br> ⬤ Organisers:<br>
Smriti - +917676055864<br>
Qurram - +917730088491
</span>
<br>
<button class="mu-rule-close-button" onclick="pRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="survivor" src="assets/images/Unclue2_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>Unclue</h3>
<span class="mu-content">
It is basically a murder mystery treasure hunt. Cooperate with your teammates to
investigate the murder and uncover key clues. By the end of the game, you and your team
will try to guess who did it, how they did it, and why they did it.<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="uRules()">Info & Rules
</button>
<div class="mu-event-rules" id="uRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ The participants will be provided with a back story of the characters in the game. They will also be provided with a map of the campus indicating different scenes of the story.<br>At each location, they will be given a clue to the next place along with a clue indicated towards the killer.<br>After acquiring all the clues, they should identify the killer.
<br><br> ⬤ Date: 9th Nov
<br><br> ⬤ Team size: 4 members
<br><br> ⬤ Max no. of teams: 20 - 25 teams
<br><br> ⬤ Duration: 2hrs
<br><br> ⬤ Prize pool: 5k
<br><br> ⬤ Organisers:<br>
Aaliya - +917060793123<br>
Pratulya - +919892246323
</span>
<br>
<button class="mu-rule-close-button" onclick="uRules()">
Collapse Rules </button>
</div>
</div>
</li>
<li>
<img class="pro" id="stageCraft" src="assets/images/WhatsPoppin2_480x360.jpg"
alt="event speaker">
<div class="mu-single-event">
<p class="mu-event-time">Cultural</p>
<h3>What's Poppin</h3>
<span class="mu-content">
Here’s an opportunity for you to take a break from the intense quizzes
and bamboozling brainteasers by enjoying an amusing quiz that tests you on
your knowledge of movies and pop culture!<br><br>
<a class="btn btn-default" href="https://www.thecollegefever.com/events/aether" target="_blank" role="button">Register</a>
</span><br>
<button class="mu-rule-button" onclick="wRules()">Info & Rules
</button>
<div class="mu-event-rules" id="wRules"
style="display: none">
<span class="mu-rule-content">
<br><br> ⬤ Savage Brains - Each team would be given one paper and they need to answer the questions displayed on the projector.<br>Hear Out - We will be playing some audio clips from various sources and the teams have to guess which part occurs from which movie or band songs.<br>Act it or answer it - We will be having a bowl of chits where each team is supposed to come forward and pick a chit and act it out where the other teams are given an opportunity to guess it within the stipulated time.
<br><br> ⬤ Date: 10th Nov
<br><br> ⬤ Team size: 3 - 4 members
<br><br> ⬤ Max no. of teams: 20 - 25 teams
<br><br> ⬤ Duration: 2 hrs
<br><br> ⬤ Prize pool:5k
<br><br> ⬤ Organisers:<br>
Shriya - +919445456584<br>
Mounica - +919121289995
</span>
<br>
<button class="mu-rule-close-button" onclick="wRules()">
Collapse Rules </button>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Schedule -->
<!-- Start Gallery -->
<section id="mu-pricing">
<div class="container-fluid">
<div class="row no-gutter">
<div class="mu-pricing-area no-gutter">
<div class="mu-pricing-content" style="align-items: center;">
<h1 id="gallery-title" class="mu-title"> Schedule </h1>
<div id="rg-gallery" class="rg-gallery">
<div class="rg-thumbs">
<!-- Elastislide Carousel Thumbnail Viewer -->
<div class="es-carousel-wrapper">
<div class="es-nav">
<span id="new" class="es-nav-prev">Previous</span>
<span id="new" class="es-nav-next">Next</span>
</div>
<div class="es-carousel">
<ul>
<li><a href="#"><img src="assets/images/schedule1.jpeg" id = "fifth_image" data-large="assets/images/schedule1.jpeg" alt="image01" /></a></li>
<li><a href="#"><img src="assets/images/schedule2.jpeg" id = "fifth_image" data-large="assets/images/schedule2.jpeg" alt="image01" /></a></li>
</ul>
</div>
</div>
<!-- End Elastislide Carousel Thumbnail Viewer -->
</div><!-- rg-thumbs -->
</div><!-- rg-gallery -->
</div><!-- content -->
</div>
</div>
</section>
<!-- End Gallery -->
</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/mec.aether/" target="_blank"><i class="fa fa-facebook"></i></a>
<a class="mu-developer-btn"><i class="fa fa-user"></i></a>
<a href="https://www.instagram.com/aether_mec/" target="_blank"><i class="fa fa-instagram"></i></a>
<!-- Start developer content -->
<div class="mu-developer-content">
<div class="mu-developer-area">
<a class="mu-developer-close-btn" href="#"><i class="fa fa-times"
aria-hidden="true"></i></a>
<h1>
Developers
</h1>
<div class="mu-developer-segment">
<img src="assets/images/vittal.jpeg" alt="developer img">
<div class="mu-developer-info">
<h3> Sai Vittal B </h3>
<p>Lead Designer-Developer</p>
<p style="color: #ffffff">
<a href="https://saivittalb.com" target="_blank"><i class="fa fa-globe"
aria-hidden="true"></i></a>
<a href="https://instagram.com/saivittalb" target="_blank"><i
class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="https://github.com/saivittalb" target="_blank"><i class="fa fa-github"
aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/saivittalb" target="_blank"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</p>
</div>
</div>
<div class="mu-developer-segment">
<img src="assets/images/sahithi.jpeg" alt="developer img">
<div class="mu-developer-info">
<h3> Sahithi Venkatesan </h3>
<p>Developer</p>
<p>
<a href="https://instagram.com/saaahiii_3" target="_blank"><i
class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="https://github.com/Sahithi33" target="_blank"><i class="fa fa-github"
aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/sahithi-venkatesan-610569162"
target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</p>
</div>
</div>
<div class="mu-developer-segment">
<img src="assets/images/neha.jpeg" alt="developer img">
<div class="mu-developer-info">
<h3> Neha Reddy </h3>
<p>Developer</p>
<p style="color: #ffffff">
<a href="https://instagram.com/_neha3010" target="_blank"><i
class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="https://github.com/neha3010" target="_blank"><i class="fa fa-github"
aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/neha-reddy-09" target="_blank"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</p>
</div>
</div>
<div class="mu-developer-segment">
<img src="assets/images/aaliya.jpeg" alt="developer img">
<div class="mu-developer-info">
<h3> Aaliya Ahmad </h3>
<p>Developer</p>
<p style="color: #ffffff">
<a href="https://instagram.com/aaliyaahmad99" target="_blank"><i
class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="https://github.com/Aaliya201" target="_blank"><i class="fa fa-github"
aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/aaliya-ahmad-b14334194" target="_blank"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</p>
</div>
</div>
<div class="mu-developer-segment">
<img src="assets/images/shreeven.jpeg" alt="developer img">
<div class="mu-developer-info">
<h3> Shreeven Kommireddy </h3>
<p>Developer</p>
<p style="color: #ffffff">
<a href="https://instagram.com/shra.py" target="_blank"><i
class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="https://github.com/Shreevenkr99" target="_blank"><i
class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/shreeven-kommireddy-b4043815a"
target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- End developer content -->
</div>
<div class="mu-footer-bottom">
<br>
<p class="mu-copy-right"> <strong>Developers : <a href="https://saivittalb.com" target="_blank"> Sai Vittal B</a>
| Sahithi Venkatesan | Neha Reddy | Aaliya Ahmad | Shreeven Kommireddy</strong></p>
<br>
<p><strong>Contact Us:<br> Technical - Rohan Pandey: +918073501247<br>Cultural - Sai Sree Pokala:
+919652602200<br>Promotions - Supritha Reddy: +917981432824</strong></p><br><br>
<p><i class="fa fa-map-marker" aria-hidden="true"></i>
<strong>Locate Us</p>
<div class="map-responsive">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3803.7195219821697!2d78.4333190507649!3d17.56853548791123!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bcb8f06a86f0315%3A0x2f80d6e75d32cc14!2sMahindra%20%C3%89cole%20Centrale!5e0!3m2!1sen!2sin!4v1572236098507!5m2!1sen!2sin" width="600" height="450" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</div><br>
</div><br><strong>© Copyright Aether 2019. All rights reserved.</strong><br>
<p style="font-size: 10px;">
<strong>*for more information about developers, click on the icon in the middle.</strong>
</p>
</div>
</div>
</footer>
<!-- End footer -->
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/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>
<script src="assets/js/owl.carousel.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/jquery.easing.min.js"></script>
<script type="text/javascript" src="assets/js/wow.js"></script>
<script type="text/javascript" src="assets/js/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="assets/js/jquery.elastislide.js"></script>
<!-- Custom js -->
<script type="text/javascript" src="assets/js/custom.js"></script>
<script type="text/javascript" src="assets/js/scripts.js"></script>
<script>
function ragaRules() {
var x = document.getElementById("ragaRules");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
function droppingRules() {
var y = document.getElementById("droppingRules");
if (y.style.display === "none") {
y.style.display = "block";
} else {
y.style.display = "none";
}
}
function bwRules(){
var z = document.getElementById("bwRules");
if (z.style.display === "none") {
z.style.display = "block";
} else {
z.style.display = "none";
}
}
function ccRules(){
var a = document.getElementById("ccRules");
if (a.style.display === "none") {
a.style.display = "block";
} else {
a.style.display = "none";
}
}
function guessRules(){
var b = document.getElementById("guessRules");
if (b.style.display === "none") {
b.style.display = "block";
} else {
b.style.display = "none";
}
}
function msRules(){
var c = document.getElementById("msRules");
if (c.style.display === "none") {
c.style.display = "block";
} else {
c.style.display = "none";
}
}
function mtwRules(){
var d = document.getElementById("mtwRules");
if (d.style.display === "none") {
d.style.display = "block";
} else {
d.style.display = "none";
}
}
function newRules(){
var e = document.getElementById("newRules");
if (e.style.display === "none") {
e.style.display = "block";
} else {
e.style.display = "none";
}
}
function pRules(){
var f = document.getElementById("pRules");
if (f.style.display === "none") {
f.style.display = "block";
} else {
f.style.display = "none";
}
}
function qRules(){
var g = document.getElementById("qRules");
if (g.style.display === "none") {
g.style.display = "block";
} else {
f.style.display = "none";
}
}
function uRules(){
var h = document.getElementById("uRules");
if (h.style.display === "none") {
h.style.display = "block";
} else {
h.style.display = "none";
}
}
function wRules(){
var i = document.getElementById("wRules");
if (i.style.display === "none") {
i.style.display = "block";
} else {
i.style.display = "none";
}
}
function grooveRules(){
var k = document.getElementById("grooveRules");
if (k.style.display === "none") {
k.style.display = "block";
} else {
k.style.display = "none";
}
}
function bobRules(){
var l = document.getElementById("bobRules");
if (l.style.display === "none") {
l.style.display = "block";
} else {
l.style.display = "none";
}
}
</script>
</body>
</html>