-
Notifications
You must be signed in to change notification settings - Fork 0
/
banner.php
69 lines (60 loc) · 1.88 KB
/
banner.php
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
<html>
<head>
<title></title>
</head>
<style>
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
width: 60%;
height:30%;
margin: auto;
}
</style>
<body>
<div class="container">
<br>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<!-- <li data-target="#myCarousel" data-slide-to="2"></li> -->
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="images/poster/poster1.jpg" alt="Hunar Hai To Kadar Hai" width="600" height="300">
<div class="carousel-caption">
<h3>FUELING THE FUTURE</h3>
<!-- <p>Everyone has a chance to learn, improve, and build up their skills. </p> -->
</div>
</div>
<div class="item">
<img src="images/poster/poster2.jpg" alt="From expert" width="600" height="300">
<!-- <div class="carousel-caption">
<h3> MR. S. RAMADORAI</h3>
<p> Empowering youth with the right skills can define the future of the country.</p>
</div> -->
</div>
<!--
<div class="item">
<img src="images/3.jpg" alt="Flower" width="600" height="300">
<div class="carousel-caption">
<h3>Smart City</h3>
<p>100 New Smart Cities.</p>
</div>
</div>
-->
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<br>
</body>
</html>