forked from snowsanta/snowsanta.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
977 lines (962 loc) · 41.8 KB
/
events.html
File metadata and controls
977 lines (962 loc) · 41.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style_main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link rel="icon" href="renders/logo.png">
<link rel="stylesheet" href="preloader.css">
<!-- <link rel="stylesheet" href="team.css"> -->
<title>Exodia - This time for tropical</title>
</head>
<body style="background-color: #FFCC5C;">
<div class="preloader" id="preloader">
<div id="sun"> </div>
<img id="cloud1" src="renders/melon.png" alt="">
<img id="cloud2" src="renders/float.png" alt="">
</div>
<script>
if (screen.width <= 700) {
var x = document.getElementById('preloader');
x.remove();
}
</script>
<div class="pos-f-t fixed-top" id="navigation">
<div class="collapse" id="navbarToggleExternalContent">
<div class="bg-dark p-4">
<a href="index.html"><h4 class="text-white">Home</h4></a>
</div>
<div class="bg-dark p-4">
<a href="events.html"><h4 class="text-white">Events</h4></a>
</div>
<div class="bg-dark p-4">
<a href="team.html"> <h4 class="text-white">Team</h4></a>
</div>
<div class="bg-dark p-4">
<a href="register.html"> <h4 class="text-white">Register</h4></a>
</div>
</div>
<nav class="navbar navbar-dark bg-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
</div>
<div class="text-center" id="heading_of_page" style="padding-bottom: 5%;padding-top:15%; background-image: url(renders/events); background-attachment: fixed; background-repeat: no-repeat;background-size: cover;">
<h1 style="color: rgb(255, 111, 105);">Events</h1>
</div>
<script>
if (screen.width <= 700) {
var x = document.getElementById('heading_of_page');
x.style.paddingTop = "20%";
x.style.marginBottom = "5%"
}
</script>
<div class="text-center" style="margin-bottom: 5%;">
<h3 class="heading-form">Technical</h3>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 event-card">
<div class='rohan'>
<h2 class="text-center" style="width: 100%;">Dementia</h2>
<img src="cult/dementia1.jpg" alt="" style="object-fit: cover;">
</div>
<div class="overlay">
<div class="club-event">
Programming Club
</div>
<div class="fees-event">
No Registration Fees
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/Dementia.pdf">
View Rules
</a>
</div>
<div class="about-content">
Gearing up for Awesome competitve coding contest?Buckle up and compete with hundreds of students from various colleges in a three hour long competition hosted at IIT Mandi.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Debug</h2>
<img src="cult/debug-1.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Programming Club
</div>
<div class="fees-event">
Fees: ₹ 100
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/D3bug.pdf">
View Rules
</a>
</div>
<div class="about-content">
Interested in solving problems? Participate in Debug event. Find the mistakes in the code which will be a challenge to your indepth knowledge of code understanding.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Line Follower</h2>
<img src="cult/line.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Robotronics Club
</div>
<div class="fees-event">
Fees: ₹ 500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/Line_Follower-converted (1).pdf">
View Rules
</a>
</div>
<div class="about-content">
Robotics is the future. Interested in Robotics and AI? Participate in Line Follower, all you have to do is to make a robot which can waln on a mesh of lines.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Robo Soccer</h2>
<img src="cult/robosoccer.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Robotronics Club
</div>
<div class="fees-event">
Fees: ₹ 500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/Robosoccer(final).pdf">
View Rules
</a>
</div>
<div class="about-content">
Crowd, Cheering, Intensity, Competion, Rush. The ground is set for the moist popular event of robotic competitions - Robosoccor! Is your Robot fast enough? Let's find out-
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Fury Road</h2>
<img src="cult/fury_road.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Robotronics Club
</div>
<div class="fees-event">
Fees: ₹ 500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/FURY ROAD_Ex.pdf">
View Rules
</a>
</div>
<div class="about-content">
An innovation-based competition which helps the participants to enhance their thinking and creativity skills where students will be tested on how they make a robot cross various obstacles.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Junkyard Wars</h2>
<img src="cult/junkyard.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Yantrik Club
</div>
<div class="fees-event">
Fees: ₹ 500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/Junkyard_War.pdf">
View Rules
</a>
</div>
<div class="about-content">
The event is an on-the-spot design and fabrication challenge where the teams will be tested on their ability to crack a problem in hand from the available heap of junk.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Nitro Racing</h2>
<img src="cult/nitro.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Yantrik Club
</div>
<div class="fees-event">
Fees: ₹ 500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/Nitro_Car.pdf">
View Rules
</a>
</div>
<div class="about-content">
An intense, dramatic rivalary about to unravel as opposing teams sush their monster cars at each other to smash, fight and only to smash again till one emerges victorious.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Cadathon</h2>
<img src="cult/cadathon.png" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Yantik Club
</div>
<div class="fees-event">
Fees: ₹ 500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/Exodia 2k20 Cadathon.pdf">
View Rules
</a>
</div>
<div class="about-content">
Solidworks is fun to work with, it is the major tool of most civil engineers. If you wanna have more fun with this toolcome participate in CADathon and use Solidworks to solve problem statement.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Crane-O-Mania</h2>
<img src="cult/craneOMania.jpeg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Yantrik
</div>
<div class="fees-event">
Fees: ₹ 500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/crane-o-mania.pdf">
View Rules
</a>
</div>
<div class="about-content">
Each of us is craving a stone, erecting a column, or cutting a piece of stained glass in the constuction of something much bigger than us. Interested in Building things? All you have to do is build a tower crane and check it's power and durability.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Cad-X</h2>
<img src="cult/cad-1.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Nirman Club
</div>
<div class="fees-event">
Fees: ₹ 300
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/CADx.pdf">
View Rules
</a>
</div>
<div class="about-content">
Beautiful always attracts everyone's eyes and is also tests how efficiently you can use the space and make the most beautiful building. CADx is one such event that tests your AUTOCAD and architechtural skills.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Quizzar</h2>
<img src="cult/quizzar-1.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Astronomy Club
</div>
<div class="fees-event">
No Registration Fees
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/Quizzar 2020.pdf">
View Rules
</a>
</div>
<div class="about-content">
Astronomy is one such things that everyone is interested in, but this event not only tests your interest but also the knowledge you have about Astronomy. You will be asked question on Astronomy and the person with most correct answers will win huge prizes.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Zenith</h2>
<img src="cult/zenith.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Astronomy Club
</div>
<div class="fees-event">
No Registration Fees
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/Zenith_Horizon 2020.pdf">
View Rules
</a>
</div>
<div class="about-content">
Photography catches one of the most beautiful moments of life and catching those moments is an art. It is said that the stars give the most amazing poses for the perfect picture. So send in your best Astropgotographs and win huge prizes.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">IPL Auction</h2>
<img src="cult/auction1-min.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
E-Cell
</div>
<div class="fees-event">
Fees: ₹ 300
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/IPL Auction RuleBook.pdf">
View Rules
</a>
</div>
<div class="about-content">
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Disrupt</h2>
<img src="cult/disrupt.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
E-Cell
</div>
<div class="fees-event">
Fees: ₹ 300
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf/disrupt.pdf">
View Rules
</a>
</div>
<div class="about-content">
Hi dementia is an event of inteleectuals where you go to compete everyone in this wrold
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
</div>
</div>
<div class="text-center" id="cultural_heading" style="padding-top: 5%;padding-bottom: 5%;margin-bottom:5%;background: url('renders/band-bg.jpg');background-attachment: fixed;">
<h3 class="heading-form">Cultural</h3>
</div>
<script>
if (screen.width <= 700) {
var x = document.getElementById('cultural_heading');
x.style.paddingTop = "20%";
x.style.paddingBottom = "20%";
x.style.marginBottom = "5%"
}
</script>
<div class="container-fluid">
<div class="row" style="margin-bottom: 5%;">
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Synchronians</h2>
<img src="cult/sync1.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Dance Club
</div>
<div class="fees-event">
Fees: ₹ 2000
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Synchronians.pdf">
View Rules
</a>
</div>
<div class="about-content">
"Hand in hand, on the edge of the sand, they danced by the light of the moon." Dancer come and go in the twinkling of an eye but the dance lives on. Synchronians, the group dance competititon is your place to show.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Exodia Idol</h2>
<img src="cult/exodia_idol.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Music Club
</div>
<div class="fees-event">
Fees: ₹ 250/Person
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Exodia_Idol.pdf">
View Rules
</a>
</div>
<div class="about-content">
Do you have the potential to enchant your audience with your Vocals to set the stage on fire? If yes, then Exodia Idol is your cue! Bollywood style, Ghazals and Qawwalis are welcomed.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Game Of Street</h2>
<img src="cult/street.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Dance Club
</div>
<div class="fees-event">
Fees: ₹ 1000
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Game Of Street.pdf">
View Rules
</a>
</div>
<div class="about-content">
Battles are not only fought with swords, they are also fought by the speech of Dance! Tell us the story of your victory by performing in the dance battle of Exodia - The Game of Streets.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Band Slam</h2>
<img src="cult/band.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Music Club
</div>
<div class="fees-event">
Fees: ₹ 700
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Band_Slam.pdf">
View Rules
</a>
</div>
<div class="about-content">
Music is a language that doesnot speak in particular words, it speaks in emotions! The artists, the echo of their assonances and the beauty of their voices receive a platform to persist in the hearts.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Groove Fanatics</h2>
<img src="cult/groove fanatics.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Dance Club
</div>
<div class="fees-event">
Fees: ₹ 500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Groove_Fanatics.pdf">
View Rules
</a>
</div>
<div class="about-content">
To dance is to be out of yourself. Larger, more beautiful, more powerful. This is the power, it is glory on Earth and it is your's for the taking. Take this opportunity to meet yourself and get lost in the tunes and echoes of music surrounding the mountains.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Rap Battle</h2>
<img src="cult/rap.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Music Club
</div>
<div class="fees-event">
Fees: ₹ 250/Person
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Rap_Battle.pdf">
View Rules
</a>
</div>
<div class="about-content">
Rap is rhythm and poetry! The stongest emmotions are expressed through Rap. Battles are fought with emotions which are best represented through poetry, through Rap. Let the Himalayas witness the story of your life.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Pair on Stage</h2>
<img src="cult/pair.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Music Club
</div>
<div class="fees-event">
Fees: ₹ 400
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Pair_on_stage.pdf">
View Rules
</a>
</div>
<div class="about-content">
Music makes one feel so romantic - atleast it always gets on one's nerve. So, open your heart at Duet singing competition in Exodia's Pair on Stage.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Street Play</h2>
<img src="cult/gustaakhSaale.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Gustaakh Saale ( Drama Club )
</div>
<div class="fees-event">
Fees: ₹ 1500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Tamasha (street play) (1).pdf">
View Rules
</a>
</div>
<div class="about-content">
One of the greatest things Drama can do, at it's best, is to redefine the words we use everyday such as love, home, family, loyality and envy. In this group drama event you have an opportunity yo amaze others with the ingenuity hidden inside yourself.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Mono Act</h2>
<img src="cult/monoact1.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Drama Club
</div>
<div class="fees-event">
Fees: ₹ 200
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/ABHIVYAKTI (mono act) (1).pdf">
View Rules
</a>
</div>
<div class="about-content">
What makes people fascinating is conflict, it's drama, it's the human condition. Here in this Monoact event we give you a chance to showcase your talent to imbibe into yourself anyone and pick up a brand new personlaity.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Stage Play</h2>
<img src="cult/stage.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Drama Club
</div>
<div class="fees-event">
Fees: ₹ 1500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/RANGMANCH (stage play ) (2).pdf">
View Rules
</a>
</div>
<div class="about-content">
With drama, you can do something deep and if your stuff was really effective, the ultimate result is silence. So, make everyone silent with your most exquisite performance and let stage overflow with emotions.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Canvas</h2>
<img src="cult/canvas1.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Art Geeks
</div>
<div class="fees-event">
Fees: ₹ 200
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Canvas_Painting.pdf">
View Rules
</a>
</div>
<div class="about-content">
Through painting, you showcase your thoughts on the Canvas. So let the Himalayas see what's inside you through Canvas Painting Competiton.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Live Sketching</h2>
<img src="cult/sketching.jpeg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Art Geeks
</div>
<div class="fees-event">
Fees: ₹ 100
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Live_Sketching.pdf">
View Rules
</a>
</div>
<div class="about-content">
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Face Painting</h2>
<img src="cult/face-2.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Art Geeks
</div>
<div class="fees-event">
Fees: ₹ 200
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Face_Painting.pdf">
View Rules
</a>
</div>
<div class="about-content">
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Doodle</h2>
<img src="cult/doodle2.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Art Geeks
</div>
<div class="fees-event">
Fees: ₹ 500
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Online_Doodle.pdf">
View Rules
</a>
</div>
<div class="about-content">
Doodle making event.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Portrait Photography</h2>
<img src="cult/potrait1.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
PMC
</div>
<div class="fees-event">
No Registration Fees
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Potrait Photography.pdf">
View Rules
</a>
</div>
<div class="about-content">
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Street Photography</h2>
<img src="cult/street_photo.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
PMC
</div>
<div class="fees-event">
No Registration Fees
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Street Photography (1).pdf">
View Rules
</a>
</div>
<div class="about-content">
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Photo Hunt</h2>
<img src="cult/photographer.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
PMC
</div>
<div class="fees-event">
Fees: ₹ 400
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Photo Hunt (1).pdf">
View Rules
</a>
</div>
<div class="about-content">
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Advertisement Making</h2>
<img src="renders/advert_special.png" alt="Kindly turn off your adblocker on the current page" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
PMC
</div>
<div class="fees-event">
Fees: ₹ 400
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Ad Making (1).pdf">
View Rules
</a>
</div>
<div class="about-content">
Are you crazy about advertisement? Trigger your ingenious minds, summon up your bizarre thoughts, and tickle your funny bones because we bring you the opportunity to make the world go awe over your prolific video making, jingle writing and logo designing skills.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Art of Photoshop</h2>
<img src="cult/photoshop.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
PMC
</div>
<div class="fees-event">
No Registration Fees
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Art of Photoshop.pdf">
View Rules
</a>
</div>
<div class="about-content">
Photoshop is an art, and you can do a lot with it. Change the atmosphere through different lightning and make the picture look more interesting.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
<div class="col-sm-3 event-card">
<h2 class="text-center" style="width: 100%;">Couture</h2>
<img src="cult/couture.jpg" alt="" style="object-fit: cover;">
<div class="overlay">
<div class="club-event">
Fashion Show
</div>
<div class="fees-event">
Fees: ₹ 2000
</div>
<div class="about-content" style="text-align: center;">
<a href="pdf_cult/Couture.pdf">
View Rules
</a>
</div>
<div class="about-content">
Fashion is art of the daily air and it changes all the time, with all the events. You can even see the approaching of a revolution in clothes. The sizzling ramp walks and the breath taking design admist an aura of enthusiasm make this event a great one.
</div>
<div class="register-button">
<a href="register.html">
Register
</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer" style="background-color:#414953;">
<div class="container-fluid">
<div class="row b-0">
<div class="col-sm foot-logo">
<img src="renders/logo.png" alt="">
</div>
<div class="col-sm" style="padding: 10px;width: 100%;">
<a href="https://www.facebook.com/Exodia.IITMandi/" class="icon-footer"><img src="renders/fbc.png" style="width: 23%;padding: 5%;border-radius: 100%;"></a>
<a href="https://www.instagram.com/exodia.in/" class="icon-footer"><img src="renders/insc.png" style="width: 23%;padding: 5%;border-radius: 100%;"></a>
<a href="https://www.facebook.com/Exodia.IITMandi/" class="icon-footer"><img src="renders/twc.png" style="width: 23%;padding: 5%;border-radius: 100%;"></a>
<a href="https://www.youtube.com/watch?v=WU_8wcNML3M" class="icon-footer"><img src="renders/ytc.png" style="width: 23%;padding: 5%;border-radius: 100%;"></a>
</div>
<div class="col-sm">
<ul class="list-group list-group-flush w-75 foot-icon-right">
<li class="list-group-item" style="background-color:#414953;">
<img src="renders/phone.png" alt="">+91 91690 49219</li>
<a href="mailto:publicity@exodia.in"><li class="list-group-item" style="background-color:#414953;">
<img src="renders/mail.png" alt="">Contact Us
</li></a>
<a href="https://goo.gl/maps/yqX5aLFQzRX7sRQw9"><li class="list-group-item" style="background-color:#414953;">
<img src="renders/address.png" alt="">IIT MANDI, H.P.
</li></a>
<a href="mailto:sponsors@exodia.in"><li class="list-group-item" style="background-color:#414953;">
<img src="renders/mail.png" alt="">Sponsor Us
</li></a>
</ul>
</div>
</div>
</div>
</div>
<!--footer start -->
<script src="./script.js"></script>
</body>
</html>