-
Notifications
You must be signed in to change notification settings - Fork 1
/
event.html
1254 lines (1126 loc) · 58.8 KB
/
event.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html style="height:100%;">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link href="http://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Raleway|Montserrat|Muli|Raleway|Righteous" rel="stylesheet">
<style>
.h-100 {
height: 100% !important;
}
.main-event-story {
height: 100%;
padding: 0%;
border: solid rgba(54, 54, 56, 0.6) 7px;
}
.title {
font-size: 48px;
color: white;
position: absolute;
top: 6%;
left: 5%;
font-family: Montserrat;
}
.discription {
font-size: 19px;
color: white;
position: absolute;
top: 15%;
left: 2%;
text-align: justify;
padding: 3%;
padding-right: 6%;
padding-top: 10%;
line-height: 28px;
font-family: Muli;
}
.thumbnail {
width: 100px;
height: 100px;
border-radius: 75px;
}
.thumb-holder {
font-family: Righteous;
height: 10%;
border-bottom: none;
border-top: none;
padding: 9%;
background-color: rgba(36, 25, 106, 0.1);
border-right: none;
transition: 0.3s;
padding-top: 11%;
}
.thumb-holder:hover {
background-color: rgba(0, 114, 255, 0.2);
background: linear-gradient(-50deg, rgba(255, 0, 0, 0.62), rgba(255, 255, 0, 0.53));
cursor: pointer;
transform: scale(1.2, 1.2);
opacity: 1 !important;
border-radius: 5px;
font-weight: 600 !important;
/*border-top-left-radius: 51px;
border-bottom-left-radius: 51px;
/*border: solid white 2px;*/
}
.w-100 {
width: 100% !important;
}
html {}
.gradback {
width: 100%;
height: 100%;
opacity: 0.5;
padding: 0px;
}
.opac-color {
position: absolute;
background-color: #242424;
width: 100%;
height: 100%;
opacity: 0.6;
}
.event-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 0px
}
body {
background: url("images/backgevent.png");
}
.text {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 14px;
height: 14px;
}
::-webkit-scrollbar-thumb {
height: 6px;
border: 4px solid rgba(0, 0, 0, 0);
background-clip: padding-box;
-webkit-border-radius: 7px;
background-color: rgba(0, 0, 0, .5);
-webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-button {
width: 0;
height: 0;
display: none;
}
::-webkit-scrollbar-corner {
background-color: transparent;
}
.list-icon {
padding: 0px;
margin: 0% !important;
font-size: 24px;
float: left;
margin-right: 5px !important;
}
.event-name {
width: 100%;
text-align: center;
color: white;
font-size: 19px;
}
.event-holder {
box-shadow: 0px 2px 25px #010313;
}
.fa {
margin-bottom: 24% !important;
}
.icon-holder {
color: white;
font-size: 32px;
padding: 10%;
padding-top: 25%;
}
#sideopener {
margin-top: 100px;
margin-left: 0px;
width: 22%;
}
html {
overflow-x: hidden;
overflow-y: hidden;
}
.material-btn {
border: none;
outline: none !important;
background-color: transparent;
border-radius: 0;
color: white;
font-size: 19px;
border: solid white;
font-family: arial;
padding: 1% !important;
}
.material-btn:hover {
background-color: white;
color: black;
}
.p-0 {
padding: 0;
}
.event {
display: none;
opacity: 0;
transition: 2s;
}
.contact {
font-family: Roboto;
font-weight: 100 !important;
position: absolute;
bottom: 0%;
left: 0%;
font-size: 19px;
color: white;
font-weight: 600;
background-color: #94241a;
/* #3f3f3f;*/
background: linear-gradient(90deg, #94241a, rgba(32, 39, 131, 0.59));
padding: 1%;
z-index: 10;
}
.sideopen {
display: none;
}
.arrow {
width: 50px;
height: 25px;
cursor: pointer;
transition: 0.5s;
}
.arrow:hover {
transform: scale(1.2, 1.2);
}
/* ---- reset ---- */
/* ---- reset ---- */
body {
margin: 0;
font: normal 75% Arial, Helvetica, sans-serif;
}
canvas {
display: block;
vertical-align: bottom;
}
/* ---- particles.js container ---- */
#particles-js {
position: absolute;
width: 100%;
height: 100%;
background-color: transparent;
background-image: url("");
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
}
/* ---- stats.js ---- */
.count-particles {
background: #000022;
position: absolute;
top: 48px;
left: 0;
width: 80px;
color: #13E8E9;
font-size: .8em;
text-align: left;
text-indent: 4px;
line-height: 14px;
padding-bottom: 2px;
font-family: Helvetica, Arial, sans-serif;
font-weight: bold;
}
.js-count-particles {
font-size: 1.1em;
}
#stats,
.count-particles {
-webkit-user-select: none;
margin-top: 5px;
margin-left: 5px;
}
#stats {
border-radius: 3px 3px 0 0;
overflow: hidden;
}
.count-particles {
border-radius: 0 0 3px 3px;
}
.clubname {
font-size: 21px;
color: white;
position: absolute;
top: 19%;
left: 44px;
/* font-family: montessarate; */
font-family: Montserrat;
}
.uppercase {
text-transform: uppercase;
}
@media only screen and (max-width: 800px) and (min-width: 520px) {
.middle {
width: 87%;
}
.upperrow {
height: 8% !important;
padding-top: 4% !important;
}
.lowerrow {
height: 12.5% !important;
padding-top: 10% !important;
}
.clubname {
font-size: 20px;
left: 31px
}
.title {
font-size: 37px;
color: white;
position: absolute;
top: 6%;
left: 5%;
font-family: Montserrat;
}
.icon-holder {
color: white;
font-size: 32px;
padding: 10%;
padding-top: 67%;
}
.sidepoints{
width: 45% !important;
}
}
@media only screen and (max-width: 500px) {
#sideopener {
margin-top: 100px;
margin-left: 0px;
width: 45% !important;
}
.icon-holder {
color: white;
font-size: 37px;
padding: 10%;
padding-top: 35%;
}
.fa {
margin-bottom: 42% !important;
}
.col-sm-1 {
width: 20%;
display: none;
}
.upperrow {
height: 8% !important;
padding-top: 5% !important;
}
.lowerrow {
height: 12.5%;
padding-top: 19% !important;
}
.event {
padding: 0 !important;
}
.material-btn {
margin-right: 8% !important;
}
.discription {
font-size: 19px;
color: white;
position: absolute;
top: 19%;
left: 3%;
text-align: justify;
padding: 3%;
padding-right: 6%;
padding-top: 10%;
line-height: 28px;
font-family: Muli;
}
.clubname {
font-size: 20px;
color: white;
position: absolute;
top: 15%;
left: 6%;
text-align: left;
/* font-family: montessarate; */
font-family: Montserrat;
}
.title {
font-size: 33px;
color: white;
position: absolute;
top: 6%;
left: 5%;
font-family: Montserrat;
}
.event-holder {
display: none;
position: absolute;
top: 0;
right: 0;
background-color: black;
width: 100%;
height: 100%;
z-index: 100;
}
.event-name {
width: 100%;
text-align: center;
color: white;
font-size: 26px;
}
.thumb-holder {
font-family: Righteous;
height: 10%;
border-bottom: none;
border-top: none;
padding: 6%;
background-color: rgba(36, 25, 106, 0.1);
border-right: none;
transition: 0.3s;
padding-top: 4%;
}
.sideopen {
display: block;
width: 2%;
transform: rotate(90deg);
position: absolute;
top: 0%;
right: 11%;
width: 3% !important;
z-index: 100;
}
}
</style>
</head>
<body class="h-100">
<div id="particles-js"></div>
<div class="container-fluid h-100">
<div class="row h-100">
<img onclick="openbar()" class="sideopen" src="images/sideopener.png" style="width:2%;" />
<div class="col-md-1 col-sm-1 h-100">
<div id="icon-holder" class="icon-holder">
<i class="fa fa-facebook-official" aria-hidden="true"></i>
<br>
<i class="fa fa-instagram" aria-hidden="true"></i>
<br>
<i class="fa fa-twitter" aria-hidden="true"></i>
<br>
</div>
<span id="sideopener" class="hvr-bounce-out sideopener" style="font-size:30px;cursor:pointer;position: absolute;color: white;" onclick="openNav()">
<a href = "aayam.html"><i class="fa fa-home" aria-hidden="true"></i></a>
</span>
</div>
<div class="col-md-9 middle h-100">
<div class="row upperrow" style="height: 10%;padding-top: 2%;">
<center style="width:100%;">
<img onclick="decrement();" class="arrow" src="images/upperarrow.png" />
</center>
</div>
<div id="event_1" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/ant3.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Jinee Shailja Tyagi: 7869267077</span>
<span></span>
</div>
<div class="text">
<span class="title">Koot & Shoot</span>
<br>
<span class="clubname">Antaragini</span>
<p class="discription">1. The event name is SHOOT&KOOT.
<br/> 2. Gs ki vines is a short film making event in which we displayed the vines made by
students on current and prevelent topics .
<br/> 3. Virtual City is a budget event in which contestants will be given a fixed amount
of virtual cash through which they can buy different cities which are divided on the
basis of literacy rate and swach Bharat Abhiyan.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://www.facebook.com/antaragni.sgsits/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://www.instagram.com/antaragni.sgsits/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_2" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/roboton3.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Naman Jaswani: 9179163299</span>
<span></span>
</div>
<div class="text">
<span class="title">SGSITS Robotics Club</span>
<br>
<span class="clubname">Robothon</span>
<p class="discription">Robothon is a 2 day event consisting of two events.
<br/> 1. Saarthi: The Roborace
<br/> 2. Chakravyuh: Line Follower Competition."
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="http://www.instagram.com/sgsits.roboticsclub ">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Instagram Page</button>
</a>
<a href="https://goo.gl/jpQA9p">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Register for Event</button>
</a>
</div>
</center>
</div>
<div id="event_3" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/kshitij2.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Vineet Himrot: 8818898133</span>
<span></span>
</div>
<div class="text">
<span class="title">Roobaroo 3.0 - Talent in you
</span>
<br>
<span class="clubname">Club Kshitij</span>
<p class="discription">
1. Club Kshitij is back with its flagship event, Roobaroo.
<br/> A talent hunt competition where you can show your talents such as dance, music, stage
play, speed painting etc.
<br/> 2. Registrations open from Monday, 19th February.
<br/> 3. Come join us in the most entertaining event in AAYAM 2k18.
<br/> 4. An opportunity to show the world your mettle. An opportunity to express yourself.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="http://www.facebook.com/kshitij.sgsits/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="http://www.instagram.com/club_kshitij">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_4" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/daksh.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Saurabh Soni: 8770656058</span>
<span></span>
</div>
<div class="text">
<span class="title">Trinity Breakout</span>
<br>
<span class="clubname">Daksh club</span>
<p class="discription">
Event name - 'Trinity breakout'
<br>
<br> Consisting 3 level game challenges
<br> 1. treasure hunt
<br> 2. hunger pangs
<br> 3. ad mad show.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://www.facebook.com/CLUB-DAKSH-419537735056093/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://www.instagram.com/p/BfREhr3Arle/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_5" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/ecell.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Varun Khutate: 9479306900</span>
<span></span>
</div>
<div class="text">
<span class="title">SCAM 2.0</span>
<br>
<span class="clubname">Entrepreneurship Cell</span>
<p class="discription">
1. This event is designed to complement the innovative ideas, analytical skills and problem solving ability of the candidates.
<br/> 2. The event also aims to help candidates identify various obstacles and pressures that
creates hurdles in the path of building a company , and to reflect on ways to avoid those.
<br/> 3. It would basically be a ground event which will be a kind of corporate commotion
in which students will be divided in teams and each team would have some dealers and
some entrepreneurs who will aim to establish their companies with the help of provided
commodities and services by negotiating , selling and investing amongst each other.
<br/>4. The team with the largest capital value at the end of the game would be declared as
the winners.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://www.facebook.com/ecell.sgsits/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://www.instagram.com/ecell.sgsits/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_6" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/ncc.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Sreshth Jain: 9584202004</span>
<span></span>
</div>
<div class="text">
<span class="title">LAKSHYA
</span>
<br>
<span class="clubname">NCC SGSITS INDORE
</span>
<p class="discription">
1. Lakshya is a shooting competition. It will include test of proficiency (accuracy and concentration) using guns.
<br>
<br>2. The event will be conducted under the national rifle association, New Delhi.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://m.facebook.com/NCC8SGSITS/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://www.instagram.com/nccsgsits/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_7" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/ran.jpeg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Prashant Gupta: 8349003223</span>
<span></span>
</div>
<div class="text">
<span class="title">RAN-BHOOMI</span>
<br>
<span class="clubname">Physical Education & Sports Dept.</span>
<p class="discription">
1. It is a paintball war competition,consists of series matches.
<br/> 2. In each match there will be 2 teams and in each team will have 5 members with their
capitals.
<br/> 3. Team members were provided dummy guns and paint bullets with real dummy war field.
<br/> 4. Team who capture capital of other team won the match and was promoted to the next
phase.
<br/> 5. The most fascinating and attracting army dress up will be provided. It will be army
combat dress with helmet and gloves.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://m.facebook.com/NCC8SGSITS/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://tinyurl.com/ncc-sgsits-2018">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Register For Event</button>
</a>
</div>
</center>
</div>
<div id="event_8" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/ojaswa_cover.png">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Hemant Kolare: 8462914234</span>
<span></span>
</div>
<div class="text">
<span class="title">Mr. And Miss Aayam 2018</span>
<br>
<span class="clubname">Club Ojaswa</span>
<p class="discription">
1. Mr. And Miss. Aayam 2k18 comprises of 3 rounds.
<br/> 2. First round is treasure hunt in which the teams will find clues hidden in the capmus
premises to find the treasure.
<br/> 3. Second round is Show your Popularity in which the teams will be segregated and each
individual will post his/her picture on the facebook page of our event and collect maximum
likes possible.
<br/> 4. Third round is the stage round where the qualified participants will come on the
stage and an extempore will be conducted.
<br/> 5. After which the judges will ask them some questions to judge their personality, on
the basis of which Mr. And Miss Aayam will be announced.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://m.facebook.com/club.ojaswa.sgsits/?tsid=0.48587958546661536&source=result">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://www.instagram.com/clubojaswa/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_9" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/trivim.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Abhinay Pathak: 9039531885</span>
<span></span>
</div>
<div class="text">
<span class="title">CRANE-CRAFT</span>
<br>
<span class="clubname">CLUB TRIVIM </span>
<p class="discription">
This competition involves with the construction of
<br>
<br> 1. a model of tower crane using the popsicle sticks,
<br> 2. and the models will be judged on the basis on dimensions & weight criteria.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://www.facebook.com/clubtrivim">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://www.instagram.com/club_trivim">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_10" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/kavya2.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Yash Agrawal: 9826567567</span>
<span></span>
</div>
<div class="text">
<span class="title">Kavyanjali</span>
<br>
<span class="clubname">Ingenious</span>
<p class="discription">
Hindi, our mother tongue, the very inception of this bilingual persona that we boast about, undoubtedly is entrenched in
crevices of our hearts we may choose to ignore sometimes.
<br>
<br/> It has immutable nuances when expressed in words not of Western influenced conformists
but of the inner child that still cries Maa", not "Mother" when in grief.
<br/> Kavyanjali, hence, can only be described in the language it proudly serves.
<br/>
<br> यह तीव्र प्रवाह विचारों का, हैं शब्दों की तकरार यहीं, यह द्वन्द सैकड़ों कवियों का, हैं
भाषा की तलवार यहीं ।।
<br> उपरोक्त पंक्तियाँ कवियों के वार्षिक कुंभ "काव्यान्जलि" को भली प्रकार से परिभाषित करती
हैं। काव्यान्जलि, मातृभाषा को समर्पित एक ऐसा आयोजन,जो प्रतिवर्ष हिंदी भाषा एवं हिंदी
साहित्य के अनुपम इतिहास को अक्षुण्य बनाये रखते हुए काव्य जगत की नूतन लेखनियों को एक उत्तम
मंच प्रदान करता हैं। वर्तमान परिवेश में पाश्चात्यीकरण के बढ़ते प्रकोप के चलते संस्कृति
एवं भाषा की मौलिकता का निरंतर ह्यास हो रहा हैं, ऐसे में भाषा के पुनरुत्थान हेतु TEAM
INGENIOUS का प्रयास काव्यान्जलि
<br> एक माध्यम अपने विचारों की अभिव्यक्ति का, एक अवसर अपनी कलम के सामर्थ्य को प्रदर्शित करने
का।
<br>
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://www.facebook.com/ingenious.sgsits/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://www.instagram.com/ingenious_sgsits/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_11" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/civil.png">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Anudeep Kanthed: 9584575657</span>
<span></span>
</div>
<div class="text">
<span class="title">VILL-O-PLAN </span>
<br>
<span class="clubname">Civil Engineering& Applied Mechanics</span>
<p class="discription">
Smart city project can be brought into purpose only when the villages are made smart.
<br/>
<br> So, the event is basically about the presentation of the ideas for making our villages
smarter.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="http://facebook.com/NA">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="http://instagram.com/NA">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_12" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/hallabol.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Rohit Choure: 9685264170</span>
<span></span>
</div>
<div class="text">
<span class="title">Halla bol </span>
<br>
<span class="clubname">Dramatics club</span>
<p class="discription">
We feature street plays (nukkad natak) on social awareness related topics.
<br>
<br/> stage plays are also done on inter college level on various themes.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://www.facebook.com/hallabol.aayam/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://www.instagram.com/halla_bol_sgsits/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_13" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/kaho.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Pragati Malakar: 9752692010</span>
<span></span>
</div>
<div class="text">
<span class="title">Kaho kahani...</span>
<br>
<span class="clubname">Department of Pharmacy </span>
<p class="discription">
Story Telling for all the students of the SGSITS college.
</p>
</div>
</div>
<div class="col-md-10 w-100 p-0" style="display:inline-block;">
<a href="https://www.facebook.com/Kaho-Kahai-Dil-Ki-Jubani-977792995710687/">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 0px;">Facebook Page</button>
</a>
<a href="https://www.instagram.com/kaho_kahani">
<button class="btn material-btn" style="float:right;margin: 10px;margin-right: 10px;">Instagram Page</button>
</a>
</div>
</center>
</div>
<div id="event_14" class="row event" style="height: 75%;padding:2%;">
<center style="width:100%;">
<div class="col-md-10 main-event-story" style="height:100%;">
<img class="event-image" src="images/arogya2.jpg">
<div class="opac-color"></div>
<img class="gradback" src="images/gradback.png">
<div class="contact">
<span>Contact:</span>
<span>Krishna Prajapati: 6260314379</span>
<span></span>
</div>
<div class="text">
<span class="title">Aarogya</span>