-
Notifications
You must be signed in to change notification settings - Fork 1
/
mediaakash.html
1047 lines (896 loc) · 33.7 KB
/
mediaakash.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta property="og:url" content="http://ipuhub.com/mediaakash.html" />
<meta property="og:type" content="article" />
<meta property="og:title" content="MediaAkash 2K16" />
<meta property="og:description" content="WELCOME TO OFFICIAL WEBSITE OF THE ANNUAL USMC FEST" />
<meta property="og:image" content="https://farm2.staticflickr.com/1688/25159456833_f785169199.jpg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>M E D I A A K A S H 2 K 1 6</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Lato:400,400italic,700,900' rel='stylesheet' type='text/css'>
<style media="screen">
@font-face {
font-family: "Futura Std Medium";
src: url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Medium.woff") format("woff"), url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Medium.otf") format("otf"), url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Medium.eot") format("eot"), url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Medium.ttf") format("ttf");
}
@font-face {
font-family: "Futura Std Book";
src: url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Medium.woff") format("woff"), url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Medium.otf") format("otf"), url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Medium.eot") format("eot"), url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Medium.ttf") format("ttf");
}
@font-face {
font-family: "Futura Std Bold";
src: url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Heavy.woff") format("woff"), url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Heavy.otf") format("otf"), url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Heavy.eot") format("eot"), url("//d2xzbo2ehns0vv.cloudfront.net/media/wysiwyg/futura-fonts/FuturaStd-Heavy.ttf") format("ttf");
}
@-webkit-keyframes mymove {
0% {transform: rotate(0deg)}
100% {transform: rotate(1800deg)}
}
p{
font-size:15px !important;
}
/* Standard syntax */
@keyframes mymove {
0% {transform: rotate(0deg)}
100% {transform: rotate(1800deg)}
}
.reel, .people{
padding:10px;
animation: mymove 10s infinite;
-webkit-animation: mymove 10s infinite;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover{
background-color: white !important;
}
.navbar-nav {
width:100%;
text-align: center;
}
.navbar-nav > li {
float: none;
display: inline-block;
}
.navbar{
margin-bottom: 0px !important;
}
.navbar-default .navbar-nav > li > a{
color: black!important;
}
.navbar-default .navbar-nav > li > a:hover{
color:#006984!important;
}
.navbar-default .navbar-nav > .active > a{
color: skyblue !important;
}
#colleges{
background-color: #4a148c;
color:white !important;
}
.tit{
padding-top: 7em;
}
.navbar-nav{
font-family: "Futura Std Book" !important;
color:black;
font-weight: 600;
}
.navbar-default{
background-color:white !important;
color:black !important;
}
#particles {}
.video {}
h1 {
font-family: "Futura Std Medium" !important;
font-size: 60px;
font-weight: 600;
letter-spacing: 0.2em;
}
#particles {
width: 100%;
height: 100%;
overflow: hidden;
}
.stuff{
font-family: "Futura Std Medium";
font-size: 16px;
color: white;
border: 3px solid white;
padding-left:5px;
}
.txt{
font-family: "Futura Std Medium";
font-size: 20px;
color: white;
border: 3px solid white;
}
#events {
background-color: #006984;
height: 300px;
}
.poem {
font-family: "Great Vibes";
font-size: 30px;
}
#main {
background-image: url("back.png");
background-size: cover;
height: 680px;
}
.people{
height:300px;
width:300px;
}
.a {
border: 5px solid black;
padding: 3px;
}
.title{
font-family: "Futura Std Medium";
font-size: 55px;
}
#space {
height: 700px !important;
background-size: cover;
background-image: url('space.png')
}
.video {
height: 200px;
width: 80%;
}
.head {
font-family: "Futura Std Medium";
letter-spacing: 6px;
}
.college {
font-family: "Futura Std Medium";
letter-spacing: 6px;
}
.date {
font-family: "Futura Std Medium";
letter-spacing: 6px;
font-size: 30px;
}
h3 {
font-family: "Futura";
font-size:35px !important;
}
p {
color: white;
font-family: "Futura Std Medium";
letter-spacing: 0.7px;
text-indent: 0.3px;
}
.title {
border: 0px solid white;
margin-top: 3em;
}
.titleS {
border: 3px solid white;
padding: 0px 0px 0px 10px;
}
h2 {
font-family: "Futura";
font-weight: 600;
color: skyblue;
font-size: 20px !important;
}
.ph {
height: 100px !important;
}
.eve {
height: 250px;
width: 250px;
padding: 10px;
}
.reel {
height: 100px;
width: 100px;
margin-top: 4em;
}
.eventstory {
padding-top: 7em;
}
.reel2 {
height: 150px;
width: 150px;
margin-right: 100%;
}
.cam {
padding-top: 5em;
}
.eveb {
background-color: #006984;
}
#evew{
background-color: white;
}
#eves{
background-color: #006984;
}
@media only screen and (max-width: 500px) {
#main {
background-image: url("back.png");
background-size: cover;
height:250px;
}
.head{
padding-top: -30px;
}
h1{
letter-spacing: 0px !important;
font-size: 20px;
}
.date{
font-size: 14px;
color: black;
margin-top: 110px !important;
}
.college{
color:black;
}
.eventstory {
padding-top: 2em;
}
#events{
height:700px;
}
#space{
height:800px !important;
}
.eve {
height: 150px;
width: 150px;
padding: 5px;
}
.reel{
height: 60px;
width:60px;
}
.reel2{
height:100px;
width:100px;
}
.title {
border: 5px solid white;
padding: 0px 0px 0px 3px;
margin-top: 1em;
}
.cam {
padding-top: 0em;
}
.titleS {
border: 0px solid white ;
padding: 0px 0px 0px 0px;
font-size: 12px !important;
}
h2{
font-size: 8px !important;
}
.stuff{
padding: 5px;
border: 0px !important;
}
.people{
height: 150px;
width:150px;
}
.txt{
font-family: "Futura Std Medium";
font-size: 14px !important;
color: white;
border:3px solid white;
}
.videocam{
height:70px;
width:300px;
}
.tit{
padding-top: 0em;
}
.head, .college{
font-size: 10px;
}
.name{
padding-left: 24px;
}
.logo{
height:200px;
width:200px;
}
}
.logo{
height:200px;
width:200px;
}
.colname{
font-family: 'Futura Std Medium';
}
.colname:hover{
border-left: 2px solid red;
}
.paddingdo{
padding:2em;
font-family:"Futura Std Medium";
letter-spacing:2px;
text-indent:2px;
}
</style>
<script type="text/javascript">
$('document').ready(function(){
var arr = ["University/College","","Delhi College of Arts and Commerce","Maharaja Agrasen","Kalindi","Kamala Nehru","Lady Sri Ram","IP College for Women","Bhim Rao Ambedkar College","Sri Guru Nanak Dev Khalsa College","Maitreyi College ","Sri Guru Gobind Singh College of Commerce","Sri Guru Tegh Bahadur Khalsa College","Aditi MahaVidyalaya","","University School of Mass Communication","University School of Humanities & Social Science","Jagannath International Management School","Maharaja Agrasen Institute of Management Studies","Vivekananda Institute Of Professional Studies(2nd Shift)","Trinity Institute of Professional Studies","Tecnia Institute of Advanced Studies","Maharaja Agrasen Institute Of Management Studies(2nd Shift)","Jagannath International Management School (2nd Shift)",
"Trinity Institute Of Professional Studies (2nd Shift)","Tecnia Institute Of Advanced Studies (2nd Shift)","Fairfield Institute of Management & Technology","Madhu Bala Institute of Communication and Electronic Media","Kasturi Ram College of Higher Education","Delhi Metropolitan Education ","Lingaya's Lalita Devi Institute of Management Science","Madhubala Institute of Communication & Electronic Media ","Vivekananda Institute of Professional Studies","","IMS, Noida","Amity University, Noida","Amity University, Haryana","Manav Rachna International University","Galgotias University","AAFT, Noida","International School of Media and Entertainment Studies","Jagran Institute of Managament and Mass Communication","Massco Media","Sadhna Acamdemy for Media Studies","Delhi School of Communication","Sharda University","Maheshwaris Institute of Management and Technology ","International School of Business & Media",
"EduKart.com","NIFT","Pearl Academy","NRAI School of Mass Communication, Management & Technology","Apeejay Institute of Mass Communication","Apar India Institute Of Management And Technology","Bhumika Films & Media Institute","IAAN School of Mass Communication","NBA School of Mass Communication","Take One School of Mass Communication","Times School of Journalism","ARM Academy of Radio Management ","Carft flim school","Bharatiya Vidya Bhawan","Pioneer Media School","A.M Informatics","Bhagwati Institute of Technology and Science"," Sardar Patel College of Communication and Management","Delhi Film Institute","Aarti Institute of Professional Studies","YMCA - Institute for Media Studies & Information Technology","New Delhi Institute Of Advanced Studies","National Institute of Mass Communication","International Institute of Mass Media","Institute For Media Management And Communication Studies",
"Delhi School of Communication","K.R. Mangalam School of Communication and Media Studies","Apar India College of Management and Technology ","SOFTDOT Hi-Tech Educational & Training Institute","Shree Guru Gobind Singh Tricentenary University","Venkateshwara Open University","Apex India Vidyapeeth ","YWCA Institute of Mass Media Studies ","Center for Research in Art of Film and Television","Purple Rose Arts and Media Institute","Delta College of Professional Studies","International Academy of Information Technology ","Jagran Institute of Management and Mass Communication ","","Jamia Milia Islamia","M.A (Journalism)","Indira Gandhi National Open University, School of Journalism and New Media Studies","JNU "];
var first = [];
var second =[];
var third = [];
var fourth =[];
var fifth =[];
var sixth = [];
var html =" ";
var i = 0;
for(i=0;i<15;i++){
first.push(arr[i]);
}
for(i=15;i<22;i++){
second.push(arr[i]);
}
for(i=30;i<45;i++){
third.push(arr[i]);
}
for(i=45;i<60;i++){
fourth.push(arr[i]);
}
for(i=60;i<75;i++){
fifth.push(arr[i]);
}
for(i=90;i<93;i++){
sixth.push(arr[i]);
}
for(i=22;i<30;i++){
sixth.push(arr[i]);
}
console.log(first);
first.forEach(function(val){
html+='<div class="colname">' + val + '</div>'
});
$('.firstList').html(html);
html="";
second.forEach(function(val){
html+='<div class="colname">' + val + '</div>'
});
$('.secondList').html(html);
html="";
third.forEach(function(val){
html+='<div class="colname">' + val + '</div>'
});
$('.thirdList').html(html);
html="";
fourth.forEach(function(val){
html+='<div class="colname">' + val + '</div>'
});
$('.fourthList').html(html);
html="";
fifth.forEach(function(val){
html+='<div class="colname">' + val + '</div>'
});
$('.fifthList').html(html);
html="";
sixth.forEach(function(val){
if(val!==undefined)
html+='<div class="colname">' + val + '</div>'
});
$('.sixthList').html(html);
html="";
});
</script>
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li ><a href="index.html">HOME</a></li>
<li class="active" ><a href="mediaakash.html">MEDIA AKASH</a></li>
<li ><a href="#events">EVENTS</a></li>
<li><a href="#chatbox">ASK QUERY</a></li>
<li><a href="https://www.facebook.com/MediaAkash-962364880466737/?fref=ts">CONTACT</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<section id="main">
<div class="container">
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-10 col-xs-12 col-xs-offset-0 tit">
<center>
<div class="head">
GURU GOBIND SINGH INDRAPRASTHA UNIVERSITY
</div>
<div class="name">
<h1><span class="a">M</span>EDIA<span style="color:skyblue">AKASH</span></h1>
</div>
<br>
<div class="college col-xs-12">
UNIVERSITY SCHOOL OF MASS COMMUNICATION
</div>
<div class="date">
30 MARCH | 31 MARCH
</div>
<div class="logo">
<img class="img-responsive" src="logoma.png" alt="" />
</div>
</center>
</div>
</div>
</div>
</section>
<section id="events">
<div class="container">
<div class="content">
<div class="row">
<div class="col-md-4">
<center>
<h3><span style="color:white">MEDIA</span><span style="color:skyblue">AKASH</span></h3>
</center>
</div>
<div class="col-md-8">
<div class="story">
<center>
<p> University School of Mass Communication, IP University is all set to host its second media festival, MediaAkash.
<br> MediaAkash aims towards bringing the media students from various institutes under one roof so as to enable them to exchange ideas; interact and in the process, grow as individuals and as professionals. In order to make this festival
a successful platform, MediaAkash is looking forward to see participation from approximately 57 institutes.</p>
<p>The carnival, MediaAkash provides a plethora of opportunities to the students across the city. From panel discussions to various field specific competitions, we hope to provide the participants with a platform where they would be able
to showcase their talent and receive feedback from the distinguished judges and faculty.</p>
<br>
</center>
</div>
</div>
</div>
<!-- <div class="row">
<center>
<div class="col-md-2">
<h2>CELL - O - TAPE </h2>
</div>
<div class="col-md-2">
<h2>VIEWFINDER</h2>
</div>
<div class="col-md-2">
<h2>MINI - MATINEE</h2>
</div>
<div class="col-md-4">
<h2>MR & MS MEDIA BUFF</h2>
</div>
<div class="col-md-2">
<h2>BOL - O - MEDIA</h2>
</div>
</center>
</div>-->
<div class="">
</div>
</div>
</div>
</div>
</section>
<section id="colleges">
<div class="container">
<center>
<h1><span style="color:white"><br>CULTURAL EVENING</span></h1>
<span class="paddingdo">30TH MARCH </span> <span class="paddingdo">-5:30PM </span> <span class="paddingdo">MAIN STAGE </span>
<div class="cultural">
<img class="img-responsive" height=300px width=300px src="sarim.jpg" alt="" />
MUSIC PERFORMANCE by Sarim Ali of USMC, 2nd Year , along with Prince, Bhavika and on instruments we will be having Kashif and Akshat.
</div>
<div class="cultural">
Performance of Saadat Hasan Manto's Play "BEEMAR" by students of USMC, 1st Year Students
</div>
<div class="cultural">
DANCE PERFORMANCE by students of USMC, 1st Year Students
</div>
<span class="paddingdo">...Soulful ! Magical... <br>See you there </span>
</center>
</div>
</section>
<section id="space">
<div class="container">
<div class="row">
<div class="col-md-4 col-xs-12">
<center>
<img class="img-responsive people" src="p.png" alt="" />
<div class="txt">
</div>
</div>
<div class="col-md-4 col-xs-12">
<div class="row">
<div class="title">
<center><span style="color:white">EVENTS</span><br>
</center>
</div>
</div>
<div class="row">
<div class="col-md-6 col-xs-6">
<center><img class="img-responsive reel" src="r1.png" alt="" /></center>
</div>
<div class="col-md-6 col-xs-6">
<center> <img class="img-responsive reel"src="r1.png" alt="" /></center>
</div>
</div>
<div class="row">
<center> <img class="img-responsive videocam" src="vid.png" alt="" /></center>
</div>
<div class="row">
<center>
<div class="col-md-4 col-xs-12 stuff">
</div>
<div class="col-md-4 col-xs-12 stuff">
</div>
<div class="col-md-4 col-xs-12 stuff">
</div>
</center>
</div>
</div>
<div class="col-md-4 col-xs-12">
<center><img class="img-responsive people" src="m.png" alt="" />
<div class="txt">
</center>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="eves">
<div class="container">
<div class="row"><center>
<div class="col-md-4 col-xs-12">
<h3><span style="color:white">MR & MS </span><span style="color:skyblue">MEDIA BUFF</span></h3>
</div>
<div class="col-md-8 col-xs-12">
<div class="story eventstory">
<center>
<p> "In order to succeed, we must first believe that we can." - Nikos Kazantzakis <br>
Participate in our event, Mr. And Ms. Media Buff and discover yourself! <br> Date-31st March <br> Venue - Main Stage <br> Time- 3:30pm-5pm
</p>
</center>
</div>
</div>
</div>
<div class="row">
<h1><a href="https://docs.google.com/forms/d/1lBl54f90i3GWjPpgiWvkmyHhUL4O7Dunlwf4L2r0Y_M/viewform?c=0&w=1"><span style="color:white !important;">REGISTER</span></a></h1>
<a href="https://drive.google.com/file/d/0Bw5F_ERLHYuGTktyVk9PQ0VvZHc/view?usp=drive_web"><button type="button" name="button"><span style="font-size:24px;font-family:'Futura Std Medium'">MORE INFO</span></button></a>
</div>
</div>
</section>
<section id="evew">
<div class="container">
<div class="row"><center>
<div class="col-md-8 col-xs-12">
<div class="story eventstory">
<center>
<p style="color:#006984 !important"> "After silence, that which comes nearest to expressing the inexpressible, is music."-Aldous Huxley
<br>To participate in our creative event, Bol-o-Media, register here! <br> Date-30th March <br> Venue-Main stage <br>Time- 4pm-5pm
</p>
</center>
</div>
</div>
<div class="col-md-4 col-xs-12">
<h3><span style="color:#006984">BOL - </span><span style="color:skyblue">O - MEDIA </div>
</div>
<div class="row pull-right">
<h1><span style="color:#006984;!important"><a href="https://docs.google.com/forms/d/1lBl54f90i3GWjPpgiWvkmyHhUL4O7Dunlwf4L2r0Y_M/viewform?c=0&w=1">REGISTER</a></span></h1>
<a href="https://drive.google.com/file/d/0Bw5F_ERLHYuGQWdZQ1RWSWtCbDQ/view?usp=drive_web"><button type="button" name="button"><span style="font-size:24px;font-family:'Futura Std Medium'">MORE INFO</span></button></a>
</div>
</div>
</section>
<section id="eves">
<div class="container">
<div class="row"><center>
<div class="col-md-4 col-xs-12">
<h3><span style="color:white">VIEW</span><span style="color:skyblue">FINDER</span></h3> </div>
<div class="col-md-8 col-xs-12">
<div class="story eventstory">
<center>
<p> “You don't make a photograph just with a camera. You bring to the act of photography all the pictures you have seen, the books you have read, the music you have heard, the people you have loved.”― Ansel Adams
Register for our photography event, Viewfinder here! Email your entries here [email protected] <br> Date- 30th march <br> Venue-Canteen <br> Time- 12-1 pm
</p>
</center>
</div>
</div>
</div>
<div class="row">
<h1><a href="https://docs.google.com/forms/d/1lBl54f90i3GWjPpgiWvkmyHhUL4O7Dunlwf4L2r0Y_M/viewform?c=0&w=1"><span style="color:white !important;">REGISTER</span></a></h1>
<a href="https://drive.google.com/file/d/0Bw5F_ERLHYuGeDlVTUdrQjUxY3c/view?usp=drive_web"><button type="button" name="button"><span style="font-size:24px;font-family:'Futura Std Medium'">MORE INFO</span></button></a>
</div>
</div>
</section>
<section id="evew">
<div class="container">
<div class="row"><center>
<div class="col-md-8 col-xs-12">
<div class="story eventstory">
<center>
<p style="color:#006984 !important"> "Audience can live without a movie but a movie cannot live without an audience." Amit Kalantri
<br>To participate in Cell-o-Tape, our Mobile Film Making event, register here! Theme on the spot <br> Date- 30th march <br>Venue- C block Audi <br> Time- 2-4pm
</p>
</center>
</div>
</div>
<div class="col-md-4 col-xs-12">
<h3><span style="color:#006984">CELL - O - </span><span style="color:skyblue">TAPE</span></h3>
</div>
</div>
<div class="row pull-right">
<h1><span style="color:#006984;!important"><a href="https://docs.google.com/forms/d/1lBl54f90i3GWjPpgiWvkmyHhUL4O7Dunlwf4L2r0Y_M/viewform?c=0&w=1">REGISTER</a></span></h1>
<a href="https://drive.google.com/file/d/0Bw5F_ERLHYuGekI5MkRwdU1EYWc/view?usp=drive_web"><button type="button" name="button"><span style="font-size:24px;font-family:'Futura Std Medium'">MORE INFO</span></button></a>
</div>
</div>
</section>
<section id="eves">
<div class="container">
<div class="row"><center>
<div class="col-md-4 col-xs-12">
<h3><span style="color:white">MINI </span><span style="color:skyblue">MATINEE</span></h3>
</div>
<div class="col-md-8 col-xs-12">
<div class="story eventstory">
<center>
<p> "Stories through the electronic canvas." to participate click on register. Email your entries here [email protected] <br> Date - 31st March <br> Venue- C block Audi <br> Time- 10am -12pm
</p>
</center>
</div>
</div>
</div>
<div class="row">
<h1><a href="https://docs.google.com/forms/d/1lBl54f90i3GWjPpgiWvkmyHhUL4O7Dunlwf4L2r0Y_M/viewform?c=0&w=1"><span style="color:white !important;">REGISTER</span></a></h1>
<a href="https://drive.google.com/file/d/0Bw5F_ERLHYuGZDNqZ2N4ZTdnZ0E/view?usp=drive_web"><button type="button" name="button"><span style="font-size:24px; font-family:'Futura Std Medium'">MORE INFO</span></button></a>
</div>
</div>
</section>
<section id="evew">
<div class="container">
<div class="row"><center>
<div class="col-md-8 col-xs-12">
<div class="story eventstory">
<center>
<p style="color:#006984 !important"> For good ideas and true innovation, you need human interaction, conflict, argument, debate. Margaret Heffernan
To participate in Khayaal Apna Apna, our Creative Writing event, register here! <br> Date - 30th March <br> Venue- D block Audi <br> Time - 12-1pm
</p>
</center>
</div>
</div>
<div class="col-md-4 col-xs-12">
<h3><span style="color:#006984">KHAYAAL</span><span style="color:skyblue"> APNA APNA</span></h3>
</div>
</div>
<div class="row pull-right">
<h1><span style="color:#006984;!important"><a href="https://docs.google.com/forms/d/1lBl54f90i3GWjPpgiWvkmyHhUL4O7Dunlwf4L2r0Y_M/viewform?c=0&w=1">REGISTER</a></span></h1>
<a href="https://drive.google.com/file/d/0Bw5F_ERLHYuGNzg3dmpNaWlIUWM/view?usp=drive_web"><button type="button" name="button"><span style="font-size:24px;font-family:'Futura Std Medium'">MORE INFO</span></button></a>
</div>
</div>
</section>
<section id="eves">
<div class="container">
<div class="row"><center>
<div class="col-md-4 col-xs-12">
<h3><span style="color:white">BRAIN </span><span style="color:skyblue">LOADING</span></h3>
</div>
<div class="col-md-8 col-xs-12">
<div class="story eventstory">
<center>
<p> "A good decision is based on knowledge and not on numbers. Plato".
Register for the Quiz Event here. <br> Date - 31st March<br> Venue -D block Audi <br> Time- 12:15-1:45 pm
</p>
</center>
</div>
</div>
</div>
<div class="row">
<h1><a href="https://docs.google.com/forms/d/1lBl54f90i3GWjPpgiWvkmyHhUL4O7Dunlwf4L2r0Y_M/viewform?c=0&w=1"><span style="color:white !important;">REGISTER</span></a></h1>
<a href="https://drive.google.com/file/d/0Bw5F_ERLHYuGbVVBTXZwNjRvSGM/view"><button type="button" name="button"><span style="font-size:24px; font-family:'Futura Std Medium'">MORE INFO</span></button></a>
</div>
</div>
</section>
<section id="evew">
<div class="container">
<div class="row"><center>
<div class="col-md-8 col-xs-12">
<div class="story eventstory">
<center>
<p style="color:#006984 !important"> If you hear a voice within you say 'you cannot paint,' then by all means paint, and that voice will be silenced. Vincent Van Gogh
To participate in DAUB DA WALL, register here! <br> Date -30th March <br> Venue - Near Library <br> Time- 2:30 -4pm
</p>
</center>
</div>
</div>
<div class="col-md-4 col-xs-12">
<h3><span style="color:#006984">DAUB</span><span style="color:skyblue"> DA WALL</span></h3>
</div>
</div>
<div class="row pull-right">
<h1><span style="color:#006984;!important"><a href="https://docs.google.com/forms/d/1lBl54f90i3GWjPpgiWvkmyHhUL4O7Dunlwf4L2r0Y_M/viewform?c=0&w=1">REGISTER</a></span></h1>
<a href="https://drive.google.com/file/d/0Bw5F_ERLHYuGTHZzNGs1eUdxa1k/view?usp=drive_web"><button type="button" name="button"><span style="font-size:24px;font-family:'Futura Std Medium'">MORE INFO</span></button></a>
</div>
</div>
</section>
<section id="eves">
<div class="container">
<div class="row"><center>
<div class="col-md-4 col-xs-12">
<h3><span style="color:white">CREATIVE </span><span style="color:skyblue">ADDA</span></h3>
</div>
<div class="col-md-8 col-xs-12">
<div class="story eventstory">
<center>
<p> "Creativity is always a leap of faith. You're faced with a blank page, blank easel, or an empty stage." Julia Cameron
Register for the Event here. <br> Date -31st March <br> Venue - D block Audi <br> Time- 11am-12pm
</p>
</center>
</div>
</div>
</div>
<div class="row">
<h1><a href="https://docs.google.com/forms/d/1lBl54f90i3GWjPpgiWvkmyHhUL4O7Dunlwf4L2r0Y_M/viewform?c=0&w=1"><span style="color:white !important;">REGISTER</span></a></h1>
<a href="https://drive.google.com/file/d/0Bw5F_ERLHYuGQWs4SFhfeUNwa00/view"><button type="button" name="button"><span style="font-size:24px; font-family:'Futura Std Medium'">MORE INFO</span></button></a>
</div>
</div>
</section>
<section id="colleges">
<div class="container">
<div class="row">
<div class="row">
<center> <h1>PARTICIPATING INSTITUTES</h1></center>
</div>
<center>
<div class="row">
<div class="col-md-2 firstList">
</div>
<div class="col-md-2 secondList">
</div>
<div class="col-md-2 thirdList">
</div>
<div class="col-md-2 fourthList">
</div>
<div class="col-md-2 fifthList">
</div>
<div class="col-md-2 sixthList">
</div>
</div>
</div>
</div>
Participation invited from students across all courses of every college :) <br>
College not mentioned above? No problem, You are most welcome :D
</section>
<section id="sponsor">
<div class="container">
<div class="row">
<center> <h1>MEDIA<span style="color:white">AKASH</span> 2K16 SPONSORS</h1></center>
</div>
<div class="row">
<div class="sponsor-img">
<center>
<div class="caption"><span style="color:white !important;">PNB</span></div>
<div class="col-md-12"><img class="img-responsive" src="pnb.png"/></div>
</div>
</div>
<br>
<div class="row">
<center>
<div class="sponsor-img">
<div class="caption">MEDIA PARTNERS</div>
<div class="col-md-6"><img class="img-responsive" src="unnamed.png"/></div>
<div class="col-md-6"><img class="edu img-responsive" src="2s.jpeg"/></div>
</div>
</div>
<div class="row">
<div class="sponsor-text">
Media Akash in partnership with Zabardast Hit 95 FM presents "Main Bhi RJ" Contest. <br>Tune in to Zabardast Hit 95 FM to know more. <br>The entries are open for students of all streams. <br>To participate please be there at IP University for the annual media festival of USMC,Media Akash on 31st March 1-3pm. <br><br><span style="font-size:40px !important;">Be a part of Media Akash and get a chance to be Star RJ of Zabardast Hit 95FM for one day(see you there on 31st March 1-3pm).</span>
</div>
</center>
</div>
</div>
</section>
<section id="chatbox">
<div class="container">
<div class="row">
<center>
<div style="font-family:Lato; font-size:20px;">ENGAGE IN CONVERSATIONS. ASK YOUR QUERIES.</div>
<div style="font-family:Lato; font-size:14px;">CHAT BOX TAKES A FEW SECONDS TO LOAD</div>
<br>
</div>
<div id="tlkio" data-channel="mediaakash" style="width:100%;height:400px;"></div><script async src="http://tlk.io/embed.js" type="text/javascript"></script>
</div>
</section>
<section id="fb">
<div class="container">
<div class="row">
<center>
<div class="col-md-12 fb">
<a style="color: white ;" href="https://www.facebook.com/MediaAkash-962364880466737/?fref=nf">FACEBOOK PAGE - MEDIAAKASH 2016</a>
</div>
</center>
</div>
</div>
</section>
<section id="footer">
<div class="container">
<div class="row">
<center>
<div class="col-md-12">
MADE WITH <i class="fa fa-heart"></i> BY TEAM IPU HUB
</div>
</center>
</div>
</div>
</section>
</body>
<style media="screen">
#footer{
padding: 20px;
background-color: #1a237e !important;
color: white !important;
font-family: "Futura Std Medium";
letter-spacing: 0.7px;
}
.fa-heart{
color:red;
font-size: 30px;