-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
43 lines (41 loc) · 1.32 KB
/
index.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
<?php include ("header.php") ?>
<?php require ("fungsi.php") ?>
<script type="text/javascript">
jQuery(window).load(function() {
jQuery('.flexslider').flexslider({
animation: "fade",
direction: "horizontal",
slideshowSpeed: 3000,
animationSpeed: 1000
});
});
</script>
<section id="content" class="row">
<section id="slideshow">
<div class="flexslider">
<ul class="slides">
<li>
<img width="960" height="320" src="slide/1.jpg" alt="bingung" />
<div class="flex-caption"><p>Bingung Memilih Bank</p></div>
</li>
<li>
<img width="960" height="320" src="slide/2.jpg" alt="bingung" />
<div class="flex-caption"><p>Bingung Memilih Bank</p></div>
</li>
<li>
<img width="960" height="320" src="slide/3.jpg" alt="bingung" />
<div class="flex-caption"><p>Bingung Memilih Bank</p></div>
</li>
<li>
<img width="960" height="320" src="slide/4.jpg" alt="bingung" />
<div class="flex-caption"><p>Bingung Memilih Bank</p></div>
</li>
<li>
<img width="960" height="320" src="slide/5.jpg" alt="bingung" />
<div class="flex-caption"><p>Bingung Memilih Bank</p></div>
</li>
</ul>
</div>
</section>
</section>
<?php include ("footer.php")?>