-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
870 lines (854 loc) · 34.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Interrupt Web Team: Akash Saravanan, Arvind Hasti, Nikhil Kumaran, Keshav Aditya, Vijai, Vikram Anand">
<title>Interrupt '17</title>
<!-- Compiled and minified CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/css/materialize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.css" />
<!-- Custom style -->
<link href="css/main.css" rel="stylesheet">
<link href="css/typer.css" rel="stylesheet">
</head>
<body>
<!-- Home Button
================================================== -->
<div class="fixed-action-btn">
<a class="btn-floating btn-large" href="#home">
<i class="large material-icons">arrow_upward</i>
</a>
</div>
<!-- Nav Bar
================================================== -->
<div class="navbar-fixed">
<nav id="navbar" class="matrix-green">
<div class="nav-wrapper">
<a href="#home" class="center brand-logo">Interrupt 2017</a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="fa fa-bars fa-2x" aria-hidden="true"></i></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="#home" class="waves-effect waves-light nav-scroll">Home</a></li>
<li><a href="#about" class="waves-effect waves-light nav-scroll">About</a></li>
<li><a href="#events" class="waves-effect waves-light nav-scroll">Events</a></li>
<li><a href="#team" class="waves-effect waves-light nav-scroll">Team</a></li>
<li><a href="#contact" class="waves-effect waves-light nav-scroll">Contact</a></li>
<li><a href="#signup_signin" class="waves-effect waves-light modal-trigger nav-scroll">Sign In</a></li>
</ul>
</div>
</nav>
</div>
<ul class="side-nav" id="mobile-demo">
<li><a href="#home" class="nav-scroll">Home</a></li>
<li><a href="#about" class="nav-scroll">About</a></li>
<li><a href="#events" class="nav-scroll">Events</a></li>
<li><a href="#team" class="nav-scroll">Team</a></li>
<li><a href="#contact" class="nav-scroll">Contact Us</a></li>
</ul>
<!-- End of Nav Bar
================================================== -->
<!-- Home Section
================================================== -->
<section data-role="section" class="center-align" id="home">
<div class="container">
<div class="logo">
<div class="logo__card">
<div class="layer">
<img src="images/laptop.png" alt="image"/>
</div>
</div>
</div>
<div class="row">
<div class="col s10 offset-s1 page text-center">
<div class="item glitch">
<h1 class="glitchText">INTERRUPT '17</h1>
<h1 class="glitchText">INTERRUPT '17</h1>
<h1 class="glitchText">INTERRUPT '17</h1>
</div>
<h4 class="typed-text center-align"></h4>
</div>
</div>
<div class="row">
<a class="col s8 offset-s2 m4 offset-m4 waves-effect waves-light btn modal-trigger white-text matrix-green-2" href="#signup_signin">Sign Up/Sign In</a>
</div>
<div class="row">
<div class="col s10 offset-s1 page text-center">
<p class="center-align">
<a href="#about" class="btn-floating btn-large waves-effect waves-light green nav-btn" ><i class="large material-icons">arrow_downward</i></a>
</p>
</div>
</div>
</div>
</section>
<!-- End of Home Section
================================================== -->
<!-- About Section
================================================== -->
<section data-role="section" id="about">
<div class="container">
<div class="row">
<div class="col s10 offset-s1 page text-center">
<h1 class="fromLeft">About Interrupt '17</h1>
<p class="fromRight">
Webster’s Dictionary defines the word ‘Interrupt’ as ‘to break off or cause to cease, as in the middle of something’. At SVCE, we define Interrupt simply as THE place to be for anyone with a passion for Computer Science. A national level technical Computer Science Symposium held every year, Interrupt is organised by the Association of Computer Engineers, Department of Computer Science and Engineering, SVCE.
<br />
Interrupt has had students marking their calendars for years now and this year it’s back and bigger than ever! Burgeoning by leaps and bounds with more innovative events and our Magnum Opus attraction - the "Drone" Event, Interrupt is for and by the Tech Enthusiasts, Geeks and Quizzers!
</p>
<p class="fromLeft">
Join us!
</p>
<p class="fromRight">
Come and get interrupted on 25th September.
</p>
</div>
<div class="col s10 offset-s1 page text-center">
<p class="center-align">
<a class="btn-floating btn-large waves-effect waves-light green nav-btn" href="#events"><i class="large material-icons">arrow_downward</i></a>
</p>
</div>
</div>
</div>
</section>
<!-- End of About Section
================================================== -->
<!-- Events Section
================================================== -->
<section data-role="section" id="events">
<div class="container">
<div class="row">
<div class="col s10 offset-s1 page text-center">
<h1 class="item">Events</h1>
</div>
<div class="col s10 offset-s1 page text-center">
<div class="row">
<a class="modal-trigger" href="#event1Modal">
<div class="col s12 m4 event item">
<h5>Battlecode</h5>
</div>
</a>
<a class="modal-trigger" href="#event2Modal">
<div class="col s12 m4 event item">
<h5>Flip A Table!</h5>
</div>
</a>
<a class="modal-trigger" href="#event3Modal">
<div class="col s12 m4 event item">
<h5>Code-o-poly</h5>
</div>
</a>
</div>
<div class="row">
<a class="modal-trigger" href="#event4Modal">
<div class="col s12 m4 event item">
<h5>Breaking the Logician's Code</h5>
</div>
</a>
<a class="modal-trigger" href="#event5Modal">
<div class="col s12 m4 event item">
<h5>Presentation Park</h5>
</div>
</a>
<a class="modal-trigger" href="#event6Modal">
<div class="col s12 m4 event item">
<h5>Quiz Wiz</h5>
</div>
</a>
</div>
<div class="row">
<a class="modal-trigger" href="#event7Modal">
<div class="col s12 m4 event item">
<h5>Event 7</h5>
</div>
</a>
<a class="modal-trigger" href="#event8Modal">
<div class="col s12 m4 event item">
<h5>Mind Your Business v3.0</h5>
</div>
</a>
<a class="modal-trigger" href="#event9Modal">
<div class="col s12 m4 event item">
<h5>Coder's Bay</h5>
</div>
</a>
</div>
<div class="row">
<a class="modal-trigger" href="#event10Modal">
<div class="col s12 m6 event item">
<h5>Connect4</h5>
</div>
</a>
<a class="modal-trigger" href="#event11Modal">
<div class="col s12 m6 event item">
<h5>Picturesque</h5>
</div>
</a>
</div>
<p class="center-align">
<a class="btn-floating btn-large waves-effect waves-light green nav-btn" href="#team"><i class="large material-icons">arrow_downward</i></a>
</p>
</div>
</div>
</div>
</section>
<!-- End of Events Section
================================================== -->
<!-- Team Section
================================================== -->
<section data-role="section" id="team">
<div class="container">
<div class="row">
<div class="col s10 offset-s1 page text-center">
<h1 class="fromLeft">Team - Interrupt '17</h1>
<p class="fromRight text-justify">
Quick brown dogs jump over the lazy fox. The jay, pig, fox, zebra, and my wolves quack! Blowzy red vixens fight for a quick jump. Joaquin Phoenix was gazed by MTV for luck. A wizard’s job is to vex chumps quickly in fog. Watch "Jeopardy! ", Alex Trebek"s fun TV quiz game. Woven silk pyjamas exchanged for blue quartz. Brawny gods just flocked up to quiz and vex him. Adjusting quiver and bow, Zompyc[1] killed the fox. My faxed joke won a pager in the cable TV quiz show. Amazingly few discotheques provide jukeboxes. My girl wove six dozen plaid jackets before she quit. Six big devils from Japan quickly forgot how to waltz. Big July earthquakes confound zany experimental vow. Foxy parsons quiz and cajole the lovably dim wiki-girl.
</p>
<p class="center-align">
<a class="btn-floating btn-large waves-effect waves-light green nav-btn" href="#contact"><i class="large material-icons">arrow_downward</i></a>
</p>
</div>
</div>
</div>
</section>
<!-- End of Team Section
================================================== -->
<!-- Contact Section
================================================== -->
<section data-role="section" id="contact">
<div class="container">
<div class="row">
<div class="col s10 offset-s1 page text-center">
<h1 class="fromLeft">Contact Us</h1>
<div class="white black-text pad">
<div class="row">
<div class="col s12">
<div id="map"></div>
</div>
</div>
<div class="row">
<div class="col s12">
<div class="row">
<div class="col s12 m3 text-center">
<p>
Chran Suresh: <br />+91 95001 32964 <br />
Arjun Aravind: <br />+91 89392 27284
</p>
</div>
<div class="col s12 m3 text-center">
<p>
Facebook: <br /><a href="https://www.facebook.com/svceinterrupt" target="_blank">Interrupt 2K17</a> <br />
Email: <br /><a href="mailto:interrupt2k17@gmail.com" target="_blank">interrupt2k17@gmail.com</a>
</p>
</div>
<div class="col s12 m6 text-center">
<p>
Address: <br />
Post Bag #1, Pennalur, Sri Perumbudur <br />
Tamil Nadu, India <br />
Pin: 602 117
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Contact Section
================================================== -->
<!-- Modal Content
================================================== -->
<!-- Sign Up/Sign In Modal
================================================== -->
<div id="signup_signin" class="modal modal-fixed">
<div class="row">
<!--toggle sign up/in-->
<div class="col s12">
<ul class="tabs tabs-fixed-width">
<li class="tab col s6"><a class="active matrix-green-text" href="#signup">Sign Up</a></li>
<li class="tab col s6"><a href="#signin" class=" matrix-green-text">Sign In</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<!--end of toggle-->
<!--start of sign up-->
<div id="signup" class="col s12">
<form class="col s12" id="reg-form" action="#">
<div class="black-text modal-content">
<div class="row">
<div class="col s2 m1">
<i class="fa fa-user fa-2x" aria-hidden="true"></i>
</div>
<div class="input-field col s10 m5">
<input id="first_name" type="text" class="validate" required="" name="fname" data-length="20">
<label for="first_name">First Name</label>
<span class="errors"></span>
</div>
<div class="col s2 m1">
<i class="fa fa-user fa-2x" aria-hidden="true"></i>
</div>
<div class="input-field col s10 m5">
<input id="last_name" type="text" class="validate" required="" name="lname" data-length="20">
<label for="last_name">Last Name</label>
<span class="errors"></span>
</div>
</div>
<div class="row">
<div class="col s2 m1">
<i class="fa fa-graduation-cap fa-2x" aria-hidden="true"></i>
</div>
<div class="input-field col s10 m11">
<input id="college" type="text" class="validate" required="" name="col" data-length="50">
<label for="college">College Name</label>
<span class="errors"></span>
</div>
</div>
<div class="row">
<div class="col s2 m1">
<i class="fa fa-envelope fa-2x" aria-hidden="true"></i>
</div>
<div class="input-field col s10 m5">
<input id="email" type="email" class="validate" required="" name="email" data-length="35">
<label for="email">Email</label>
<span class="errors"></span>
</div>
<div class="col s2 m1">
<i class="fa fa-mobile fa-3x" aria-hidden="true"></i>
</div>
<div class="input-field col s10 m5">
<input id="phone" type="tel" class="validate" required="" name="mobile_num" data-length="10">
<label for="phone">Phone Number</label>
<span class="errors"></span>
</div>
</div>
<div class="row">
<div class="col s2 m1">
<i class="fa fa-unlock-alt fa-2x" aria-hidden="true"></i>
</div>
<div class="input-field col s10 m5">
<input id="password" type="password" class="validate" required="" name="pass" data-length="16">
<label for="password">Password</label>
<span class="errors"></span>
</div>
<div class="col s2 m1">
<i class="fa fa-unlock-alt fa-2x" aria-hidden="true"></i>
</div>
<div class="input-field col s10 m5">
<input id="password_confirm" type="password" class="validate" required="" name="confirm_pass" data-length="16">
<label for="password_confirm">Confirm Password</label>
<span class="errors"></span>
</div>
</div>
<div class="row">
<div class="input-field col s12 m4 offset-m8">
<button type="submit" class="waves-effect waves-light btn matrix-green-2">
<i class="material-icons right">done</i>Sign Up
</button>
</div>
</div>
</div>
</form>
</div>
<!--end of sign up-->
<!--Start of sign in-->
<div id="signin" class="col s12">
<form class="col s12" action="#">
<div class="black-text modal-content">
<div class="row">
<div class="col s2 m1">
<i class="fa fa-envelope fa-2x" aria-hidden="true"></i>
</div>
<div class="input-field col s10 m11">
<input id="email_login" type="email" class="validate" data-length="20">
<label for="email_login">E-mail</label>
</div>
</div>
<div class="row">
<div class="col s2 m1">
<i class="fa fa-unlock-alt fa-2x" aria-hidden="true"></i>
</div>
<div class="input-field col s10 m11">
<input id="pass_login" type="password" class="validate" data-length="20">
<label for="pass_login">Password</label>
</div>
</div>
<div class="row">
<div class="col s12">
<input name="selectEvent" type="checkbox" id="remember"/>
<label for="remember">Remember Me</label>
</div>
</div>
<div class="row">
<div class="input-field col s12 m4 offset-m8">
<button type="submit" class="waves-effect waves-light btn modal-trigger matrix-green-2">
<i class="material-icons right">done</i>Sign In
</button>
</div>
</div>
</div>
</form>
</div>
<!--end of sign in-->
</div>
</div>
<!-- Event Registration Modal
================================================== -->
<div id="register" class="modal">
<form class="col s12" action="#">
<div class="black-text modal-content">
<div class="row">
<div class="col s12 m4">
<p>
<input name="selectEvent" type="checkbox" id="event1"/>
<label for="event1">Event One</label>
</p>
<p>
<input name="selectEvent" type="checkbox" id="event2"/>
<label for="event2">Event Two</label>
</p>
<p>
<input name="selectEvent" type="checkbox" id="event3"/>
<label for="event3">Event Three</label>
</p>
</div>
<div class="col s12 m4">
<p>
<input name="selectEvent" type="checkbox" id="event4"/>
<label for="event4">Event Four</label>
</p>
<p>
<input name="selectEvent" type="checkbox" id="event5"/>
<label for="event5">Event Five</label>
</p>
<p>
<input name="selectEvent" type="checkbox" id="event6"/>
<label for="event6">Event Six</label>
</p>
</div>
<div class="col s12 m4">
<p>
<input name="selectEvent" type="checkbox" id="event7"/>
<label for="event7">Event Seven</label>
</p>
<p>
<input name="selectEvent" type="checkbox" id="event8"/>
<label for="event8">Event Eight</label>
</p>
<p>
<input name="selectEvent" type="checkbox" id="event9"/>
<label for="event9">Event Nine</label>
</p>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<button type="submit" class="waves-effect waves-light btn blue modal-trigger matrix-green-2">Register
<i class="material-icons right">done</i>
</button>
</div>
</div>
</div>
</form>
</div>
<!-- Successful Sign Up Pop-up Modal
================================================== -->
<div id="popup" class="modal">
<div class="black-text modal-content">
<h3>Thank you for registering!</h3>
<p>You have now been logged in. Happy Interrupt! :)</p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat matrix-green-2">Okay</a>
</div>
</div>
<!-- Successful Registration Pop-up Modal
================================================== -->
<div id="popup" class="modal">
<div class="black-text modal-content">
<h3>Thank you for registering!</h3>
<p>Your registration has successfully been added to our database. We look forward to your participation. :)</p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat matrix-green-2">Okay</a>
</div>
</div>
<!-- Events Section
================================================== -->
<div id="event1Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent1" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent1" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent1" class="col s12 modal-content">
<h5>Battlecode</h5>
<img src="" alt="">
<p class="text-justify">
Take up arms (and your keyboards) to fight an all-out war against teams to rise as the Champion of the land of JAVArosa.
</p>
<p>
As army generals, command your prompts as you clash in two rounds, filled with coding and sharp C/ C++ snippets, and strategize your structures to form a Victory array!
</p>
<p>
Register now, and join the war for the Interrup-Throne!
</p>
</div>
<div id="rulesEvent1" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>Team must consists of maximum 3 members.</li>
<li>Organisers decision is final.</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event2Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent2" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent2" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent2" class="col s12 modal-content">
<h5>Flip A Table!</h5>
<img src="" alt="">
<p class="text-justify">
A SQL query walks into a bar and sees two tables. He walked up to them and says 'Can I join you?'
</p>
<p>
If you got that, you may have what it takes to tackle insane databases with queries that will search the word _supercalifragilisticexpialidocious_ like a walk in the park.
</p>
<p>
This event comprises of 2 rounds, with General MCQs and a querying round where you get to bring your A - Game and add it to a primary key. Register now to flip the tables in your favor!
</p>
</div>
<div id="rulesEvent2" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>Team must consists of minimum 2 members and maximum 3 members.</li>
<li>Organisers decision is final.</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event3Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent3" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent3" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent3" class="col s12 modal-content">
<h5>Code-o-poly</h5>
<img src="" alt="">
<p class="text-justify">
Were you born to code? Then grab two of your friends and head on down to Code-o-poly!
</p>
<p>
Players who make it through our ultimate C skills test get into a round of Code Bingo, where CS meets Tumbola.
</p>
<p>
Registrations open now!
</p>
</div>
<div id="rulesEvent3" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>Team of 2-3 members</li>
<li>Organizers decision is final</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event4Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent4" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent4" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent4" class="col s12 modal-content">
<h5>Breaking the Logician's Code</h5>
<img src="" alt="">
<p class="text-justify">
Imagination takes you everywhere" - Albert Einstein.
</p>
<p>Are you a person who agrees to disagree with him on this and prove that it is logic that takes you everywhere and beyond?
</p>
<p> Take part in this coding event comprising of 2 rounds - a logical puzzle solving round followed by a Room Escape style round where you'll have to find clues to escape and win. It doesn't get better than this!
</p>
<p>
Register now!
</p>
</div>
<div id="rulesEvent4" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>Team must consists of maximum 2 members.</li>
<li>Organisers decision is final.</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event5Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent5" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent5" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent5" class="col s12 modal-content">
<h5>Presentation Park</h5>
<img src="" alt="">
<p class="text-justify">
Are you a visionary keen on computer science? Then this event is the perfect platform for you to exhibit your knowledge. You are required to choose and present a paper on any one of the given topics.
</p>
<p>
Fascinate the judges by sharing your in depth knowledge and unique insights on the chosen topic are prove to them that you are worthy of being 'the chosen one'!
</p>
<p>
Register now!
</p>
</div>
<div id="rulesEvent5" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>Team must be of 2 members.</li>
<li>Plagiarism may result in disqualification.</li>
<li>Judge's decision is final.</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event6Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent6" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent6" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent6" class="col s12 modal-content">
<img src="images\Quiz.png" class="img-center" alt="" width="100px" height="100px">
<h5>Quiz Wiz</h5>
<p class="text-justify">
Are you a fount of computer knowledge? Do you feel that you're a 'A walking computer encyclopedia'? If so, then let your inner quiz enthusiast come out and take part in this quiz event.
</p>
<p>
This event comprises of 2 rounds- the prelims and the finals. In each round, you'll be asked a number of questions of different types testing your knowledge. If you win, you earn from it. Even otherwise, you learn from it.
</p>
<p>
It's always gonna be a win for you.
</p>
Register now!
</div>
<div id="rulesEvent6" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>Team must consist of maximum 3 members.</li>
<li>Quiz master's decision is final.</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event7Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent7" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent7" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent7" class="col s12 modal-content">
<h5>Event Name</h5>
<img src="" alt="">
<p class="text-justify">
Lorem ipsum dolor sit amet, mei quis soluta ut, ius ut autem deleniti. At oratio neglegentur qui, illum maluisset reprimique cum cu. Ius esse nostrum id, no omnis omittam mea. Erant maiorum te qui, qui labore mandamus id. Cum id nisl porro ponderum, vix eu suscipit reformidans, quo melius graecis epicurei ea. Qui eu latine erroribus, te causae conceptam vix.
</p>
</div>
<div id="rulesEvent7" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>Rule 1</li>
<li>Rule 2</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event8Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent8" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent8" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent8" class="col s12 modal-content">
<img class="img-center" src="images\MYB.png" alt="" width="100px" height="100px">
<h5>Mind Your Business v3.0</h5>
<p class="text-justify">
Welcome to the mothership of all events. This challenge is not for the weak, but for those who've embraced their light and dark side.
</p>
<p> That's right, watch as all your "other" skills being tested through rounds varying from playing dumb in charades to coming up with a creative ad for Adzap.
</p>
<p> Register now if you think you've got what it takes to Mind Your Business.
</p>
<p>Rounds will be announced on-spot.
</p>
</div>
<div id="rulesEvent8" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>Teams of 2 or 3 is required.</li>
<li>The organisers decision is final.</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event9Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent9" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent9" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent9" class="col s12 modal-content">
<img src="images\CB.png" alt="" class="img-center" width="100px" height="100px">
<h5>Coder's Bay</h5>
<p class="text-justify">
"Ahoy!" Anchor up at the C-Port, where everyone goes "Arr!" as you take out your computers and venture into the Web, ready to code your way to victory.
</p>
<p> Swim through the Torrents and fight the Pythons of the sea as you search for that right algorithm to reach for Davy Jones' Locker!
</p>
<p>
Register now, weigh your anchors, and Give No Quarter.
</p>
</div>
<div id="rulesEvent9" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>The competition will be held on hacker rank platform. The participants must have a hackerrank account prior to participating in the event.</li>
<li>Plagiarism of code will be viewed strictly.</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event10Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent10" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent10" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent10" class="col s12 modal-content">
<h5>Connect4</h5>
<img src="" alt="">
<p class="text-justify">
Is the Jumble totally your thing? Do you love guessing games?
</p>
<p>
Four clues, one word and a ticking clock.
</p>
<p>
How quickly can your brain put two and two together? Come show us at Connect4!
</p>
</div>
<div id="rulesEvent10" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>The participant with the highest points will be declared the winner and in case of a tie the person finishing the event first will be declared the winner.</li>
<li>Certificate of participation will not be awarded for this event</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<div id="event11Modal" class="modal modal-fixed black-text">
<div class="row">
<ul class="tabs">
<li class="tab col s6"><a href="#aboutEvent11" class="teal-text">About</a></li>
<li class="tab col s6"><a href="#rulesEvent11" class="teal-text">Rules</a></li>
<div class="indicator teal" style="z-index:1"></div>
</ul>
</div>
<div id="aboutEvent11" class="col s12 modal-content">
<img src="images\OP.png" class="img-center" alt="" width="150px" height="100px">
<h5>Picturesque</h5>
<p class="text-justify">
In a world where creatives often only have a couple of minutes to view your site, the photographs on the site can play a major role. Many people will quickly abandon a website to jump to the next, so you have to make sure your entire site is not only engaging, but successfully portrays your personality.
</p>
<p> So here's an extraordinary opportunity for y'all to grab in this year's interrupt. An innovative, inventive and prolific photograph of our symposium on Facebook; can help y'all to showcase your talent to the outer world.
</p>
<p>
Hurry up, what are you waiting for?
</p>
<h5>Theme:</h5>
<ul>
<li>Computer Science</li>
<li>Robots</li>
<li>Gadgets</li>
</ul>
</div>
<div id="rulesEvent11" class="col s12 modal-content">
<h5>Rules</h5>
<ol class="left-align">
<li>Any photo should be sent to the page after which you can share it after being uploaded.</li>
<li>Winner will be selected based on the number of likes and the maximum relevance to the theme provided.</li>
</ol>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat">Okay</a>
</div>
</div>
<!-- End of Modal Content
================================================== -->
<!-- core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Compiled and minified JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/js/materialize.min.js"></script>
<!-- Scripts for image hover effect and scroll reveal -->
<script src="https://unpkg.com/scrollreveal/dist/scrollreveal.min.js"></script>
<script src="js/jquery.hover3d.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.17.0/jquery.validate.min.js"></script>
<script src="https://use.fontawesome.com/0cd87a9fa4.js"></script>
<!-- Custom scripts -->
<script src="js/scripts.js"></script>
<script src="js/typer.min.js"></script>
<!-- Map API -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB3n5FyPcc6obZMgNKkOXv-PHP1OKSjQ4c&callback=myMap"></script>
<!--
================================================== -->
</body>
</html>