-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathslider_new.php
66 lines (55 loc) · 1.82 KB
/
slider_new.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>13th Annual Alumni Meet</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/animate.css">
<script src="js/wow.js" ></script>
<script>
new WOW().init();
</script>
<style>
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
width: 200px;
height: 150px;
}
#myCarousel{
width: 250px;
margin-top: -200px;
}
</style>
</head>
<body>
<div class="container" style="position:relative;left:-80px;top:50px;">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<p style="position:relative;left:20px;color:white;font-weight:normal;">Our Sponsors</p>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active wow bounceInLeft">
<img src="img/spons/2015/e1.png" alt="Chania" width="460" height="345">
</div>
<div class="item wow bounceInLeft">
<img src="img/spons/2015/e2.png" alt="Chania" width="460" height="345">
</div>
<div class="item wow bounceInLeft">
<img src="img/spons/2015/e3.png" alt="Flower" width="460" height="345">
</div>
<div class="item wow bounceInLeft">
<img src="img/spons/2015/e4.png" alt="Flower" width="460" height="345">
</div>
<div class="item wow bounceInLeft">
<img src="img/spons/2015/e5.png" alt="Flower" width="460" height="345">
</div>
<div class="item wow bounceInLeft">
<img src="img/spons/2015/e6.png" alt="Flower" width="460" height="345">
</div>
<div class="item wow bounceInLeft">
<img src="img/spons/2015/e7.png" alt="Flower" width="460" height="345">
</div>
</div>
</div>
</div>
</body>
</html>