-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
501 lines (402 loc) · 21.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>IIITM Radio</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- <link rel="stylesheet" type="text/css" href="css/bootstrap1.css"> -->
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<!-- Your custom styles (optional) -->
<link rel="stylesheet" type="text/css" href="radiocs.css">
<link rel="icon" href="favicon.ico">
</head>
<body>
<!--Main Navigation-->
<header>
<button onclick="topFunction()" id="myBtn" title="Go to top"><h3 id="arrow">↑</h3></button>
<!-- Navbar -->
<nav class="navbar fixed-top navbar-expand-md bg-dark navbar-dark scrolling-navbar">
<div class="container">
<!-- Brand -->
<a class="navbar-brand waves-effect" href="https://www.iiitm.ac.in" target="_blank">
<img src="favicon.ico">
<strong class="blue-text">RadioIIITM</strong>
</a>
<!-- Collapse -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Links -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- Left -->
<ul class="navbar-nav mr-auto">
<li class="nav-item" id="home">
<a class="nav-link waves-effect" onclick="revealHome()" id="cl">Home
<!-- <span class="sr-only">(current)</span> -->
</a>
</li>
<li class="nav-item" id="abt">
<a class="nav-link waves-effect" onclick="revealAboutUs()" id="cli">About Us</a>
</li>
<li class="nav-item" id="fm">
<a class="nav-link waves-effect" onclick="revealRadio()" id="clj">FM@IIITM</a>
</li>
<li class="nav-item" id="contact1">
<a class="nav-link waves-effect" onclick="revealContactUs()" id="clk">Contact Us</a>
</li>
</ul>
<!-- Right -->
<ul class="navbar-nav nav-flex-icons">
<li class="nav-item">
<a href="https://www.facebook.com/" class="nav-link waves-effect" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="nav-item">
<a href="https://twitter.com/" class="nav-link waves-effect" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="nav-item">
<a href="https://instagram.com/" class="nav-link waves-effect" target="_blank">
<i class="fa fa-instagram"></i>
</a>
</li>
<li class="nav-item">
<a href="https://youtube.com/" class="nav-link waves-effect" target="_blank">
<i class="fa fa-youtube"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navbar -->
</header>
<!--Main Navigation-->
<br>
<!--Main layout-->
<div class="mt-5 pt-5" id="newsfeed">
<div class="container">
<!--Section: Jumbotron-->
<section class="card wow fadeInUp fast">
<!-- Content -->
<iframe frameborder="0" style="height: 350px; overflow:scroll; width: 100%" src="carousel.html" marginheight="1" marginwidth="1" name="cboxmain" id="cboxmain" seamless="seamless" scrolling="no" frameborder="0" allowtransparency="true" ></iframe>
<!-- Content -->
</section>
<!--Section: Jumbotron-->
<hr class="my-5">
<!--Section: Cards-->
<section class="text-center">
<!--Grid row-->
<div class="row mb-4 wow fadeInUp fast">
<!--Grid column-->
<div class="col-lg-4 col-md-12 mb-4">
<!--Card-->
<div class="card">
<!--Card image-->
<div class="view overlay">
<div class="embed-responsive embed-responsive-16by9 rounded-top">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/Tgwyj2mG_YU" allowfullscreen></iframe>
</div>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">IIITM - Happy</h4>
<!--Text-->
<p class="card-text">IIITM Gwalior is happy, as Aurora - Central India Largest Cultural Fest Aurora is coming once again on - 20th -22nd Feb 2015. Be ready!!!!
This year Aurora`15 is all set to recreate the 20’s adroitness and prestidigitation with all the zeal and verve. Aurora comes with tons of newborn events and lot more whoopee and pep.</p>
<p class="card-text">
</p>
</div>
</div>
<!--/.Card-->
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4">
<!--Card-->
<div class="card">
<!--Card image-->
<div class="view overlay">
<img src="modi1.jpg" class="card-img-top" alt="">
<a href="https://www.youtube.com/watch?v=VZHsPcmP-Y4" target="_blank">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">PM Shri Narendra Modi's Mann Ki Baat, 25 November 2018</h4>
<!--Text-->
<p class="card-text">PM Shri Narendra Modi's Mann Ki Baat, 25 November 2018</p>
<a href="https://www.youtube.com/watch?v=VZHsPcmP-Y4" target="_blank" class="btn btn-primary btn-md">Watch
<i class="fa fa-play ml-2"></i>
</a>
</div>
</div>
<!--/.Card-->
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4">
<!--Card-->
<div class="card">
<!--Card image-->
<div class="view overlay">
<img src="abhishar.jpg" alt="">
<a href="https://mdbootstrap.com/education/tech-marketing/web-push-introduction/" target="_blank">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">Abhishar Vol-8</h4>
<!--Text-->
<p class="card-text">Over a span of eight years, Abhishar has grown from the echelon of a magazine to being the voice of students and alumunus of IIITM. Read more into our theme "INTO THE COSMOS"</p>
<a href="https://www.iiitm.ac.in/images/qlinks/abhishar-volume-8.pdf" target="_blank" class="btn btn-primary btn-md">Read More
<i class="fa fa-play ml-2"></i>
</a>
</div>
</div>
<!--/.Card-->
</div>
<!--Grid column-->
</div>
<!--Grid row-->
<!--Grid row-->
<div class="row mb-4 wow fadeInUp fast">
<!--Grid column-->
<div class="col-lg-4 col-md-12 mb-4">
<!--Card-->
<div class="card">
<!--Card image-->
<div class="view overlay">
<img src="https://mdbootstrap.com/img/Marketing/mdb-press-pack/mdb-angular.jpg" class="card-img-top" alt="">
<a href="https://mdbootstrap.com/angular/" target="_blank">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">MDB with Angular</h4>
<!--Text-->
<p class="card-text">Built with Angular 5, Bootstrap 4 and TypeScript. CLI version available. </p>
<a href="https://mdbootstrap.com/angular/" target="_blank" class="btn btn-primary btn-md">Free download
<i class="fa fa-download ml-2"></i>
</a>
</div>
</div>
<!--/.Card-->
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4">
<!--Card-->
<div class="card">
<!--Card image-->
<div class="view overlay">
<img src="https://mdbootstrap.com/img/Marketing/mdb-press-pack/mdb-react.jpg" class="card-img-top" alt="">
<a href="https://mdbootstrap.com/react/" target="_blank">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">MDB with React</h4>
<!--Text-->
<p class="card-text">Based on the latest Bootstrap 4 and React 16. </p>
<a href="https://mdbootstrap.com/react/" target="_blank" class="btn btn-primary btn-md">Free download
<i class="fa fa-download ml-2"></i>
</a>
</div>
</div>
<!--/.Card-->
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4">
<!--Card-->
<div class="card">
<!--Card image-->
<div class="view overlay">
<img src="https://mdbootstrap.com/img/Marketing/mdb-press-pack/mdb-vue.jpg" class="card-img-top" alt="">
<a href="https://mdbootstrap.com/vue/" target="_blank">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">MDB with Vue</h4>
<!--Text-->
<p class="card-text">Based on the latest Bootstrap 4 and Vue 2.5.7. </p>
<a href="https://mdbootstrap.com/vue/" target="_blank" class="btn btn-primary btn-md">Free download
<i class="fa fa-download ml-2"></i>
</a>
</div>
</div>
<!--/.Card-->
</div>
<!--Grid column-->
</div>
<!--Grid row-->
<!--Pagination-->
<nav class="d-flex justify-content-center wow fadeInUp fast">
<ul class="pagination pg-blue">
<!--Arrow left-->
<li class="page-item disabled">
<a class="page-link" href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
<span class="sr-only">Previous</span>
</a>
</li>
<li class="page-item active">
<a class="page-link" href="#">1
<span class="sr-only">(current)</span>
</a>
</li>
<li class="page-item">
<a class="page-link" href="#">2</a>
</li>
<li class="page-item">
<a class="page-link" href="#" aria-label="Next">
<span aria-hidden="true">»</span>
<span class="sr-only">Next</span>
</a>
</li>
</ul>
</nav>
<!--Pagination-->
</section>
<!--Section: Cards-->
</div>
</div>
<!--Main layout-->
<div class="mt-5 pt-5" id="contact" style="display: none;">
<div class="container">
<!--Section: Jumbotron-->
<section class="card wow fadeInUp fast" id="kli" style="background-image: url(https://mdbootstrap.com/img/Photos/Others/gradient1.jpg);">
<!-- Content -->
<div class="card-body text-white text-center py-5 px-5 my-5">
<h1 class="mb-4">
<strong>Contact Us</strong>
</h1>
<p>
<strong>A radio station for Everyone</strong>
</p>
</div>
<!-- Content -->
</section>
</div>
</div>
<div class="mt-5 pt-5" id="radioIIITM" style="display: none;">
<div class="container">
<!--Section: Jumbotron-->
<section class="card wow fadeInUp fast" style="background-image: url(https://mdbootstrap.com/img/Photos/Others/gradient1.jpg);" >
<!-- Content -->
<div class="card-body text-white text-center py-5 px-5 my-5">
<p class="mb-4">Hit the <i class="fa fa-play"></i> button to listen to RadioIIITM</p>
<audio controls>
<source src="a.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<!-- Content -->
</section>
</div>
</div>
<div class="mt-5 pt-5" id="AboutUs" style="display: none;">
<div class="container">
<!--Section: Jumbotron-->
<section class="card wow fadeInUp fast" style="background-image: url(https://mdbootstrap.com/img/Photos/Others/gradient1.jpg);">
<!-- Content -->
<div class="card-body text-white text-center py-5 px-5 my-5">
<h1 class="mb-4">
<strong>About Us</strong>
</h1>
<p>
<strong>A radio station for Everyone</strong>
</p>
<p class="mb-4">
<strong>Radio has touched the sentiments of the vast section of Indian society. Many who are in their middle age can remember the days in the early 80's.The dependence on radio had gone to such an extent, that families would rely on the timings of the radio program for their activities. Many would relate starting of a particular radio program as time to leave for their offices, sending kids to school, or starting work etc.However, with the advent of television in the mid 80's the radio began to loose its sheen as a potent entertainment media. Television became a major rival to the radio by adding the visual dimension to entertainment. In order to reinvent the radio, it had to be put into a place where television had not reached, for example in rural areas , inaccessible interior areas of our country where electricity had not reached, inside a moving car and trains etc.The radio received a new lease of life when in July 1999, the government allowed private operators to enter the FM radio broadcasting sector. The new face of the radio was no shorter than a revolution by reaching the car stereos to mobiles. The FM stations besides giving a new face to radio also played a role in popularising the local culture and highlighting the spirit of the people. The radio once again has become a personal friend of everyone at the steering wheel or a youngster idling away time in the corner of a college canteen. Can the leader of technology not be a part of this communication revolution? Bringing in our scientific and technical expertise along with entertainment we can possibly make IIITM Gwalior FM radio an unique gateway to knowledge.</strong>
</p>
</div>
<!-- Content -->
</section>
</div>
</div>
<!--Footer-->
<footer class="page-footer text-center font-small mdb-color darken-2 mt-4 wow fadeIn" class="footer" id="foot">
<!--Call to action-->
<hr class="my-4">
<!-- Social icons -->
<div class="pb-4">
<a href="https://www.facebook.com/" target="_blank">
<i class="fa fa-facebook mr-3"></i>
</a>
<a href="https://twitter.com/" target="_blank">
<i class="fa fa-twitter mr-3"></i>
</a>
<a href="https://www.youtube.com/" target="_blank">
<i class="fa fa-youtube mr-3"></i>
</a>
<a href="https://www.instagram.com/" target="_blank">
<i class="fa fa-instagram mr-3"></i>
</a>
</div>
<!-- Social icons -->
<!--Copyright-->
<div class="footer-copyright py-3">
Made with ❤ by RadioIIITM
</div>
<!--/.Copyright-->
</footer>
<!--/.Footer-->
<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Initializations -->
<script type="text/javascript">
// Animations initialization
new WOW().init();
</script>
<script src="radiojs.js"></script>
<!-- when opened , home tab is black -->
<script>
var limit=500;
document.getElementById("home").style.backgroundColor = 'black';
document.getElementById("home").style.borderRadius = '5px';
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > limit || document.documentElement.scrollTop > limit) {
document.getElementById("myBtn").style.display = "block";
} else {
document.getElementById("myBtn").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</body>
</html>