-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
39 lines (39 loc) · 1.65 KB
/
footer.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
<footer>
<div class="row expanded callout secondary">
<div class="large-4 columns">
<h5 style="color:white;">TUBAN STREET</h5>
<p class="footer-links">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Home</a> <br>
<a href="about.php"><i class="fa fa-user" aria-hidden="true"></i> Tentang Kami</a> <br>
<a href="kontak.php"><i class="fa fa-phone" aria-hidden="true"></i> Kontak Kami</a> <br>
<a href="galeri.php"><i class="fa fa-picture-o" aria-hidden="true"></i> Gallery</a> <br>
<a href="#"><i class="fa fa-youtube-play" aria-hidden="true"></i> Video</a> <br>
</p>
</div>
<?php
$hasil = $koneksi->prepare("SELECT * FROM kategori ORDER BY id DESC");
$hasil->execute();
$data = $hasil->fetchAll();?>
<div class="large-4 columns">
<h5 style="color:white;">KATEGORI</h5>
<?php foreach ($data as $key) {?>
<span class="secondary label"><?php echo $key['nama_kategori']; ?></span>
<?php }?>
</div>
<div class="large-4 columns">
<h5 style="color:white;">SEKILAS TUBAN STREET</h5>
<p style="color:white;">Tuban Street merupakan portal informasi kota tuban mulai dari wisata, lowongan pekerjaan, berita, event dan lain - lain. Dengan adanya website ini diharapkan mempermudah informasi yang ada di Kota Tuban. </p>
</div>
</div>
<div class="row expanded">
<div class="medium-12 columns">
<p style="color:#000;text-align: center;font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;font-size: 15px;">
Copyright © 2016 Ahmad Lufi Alfianul Ula
</p>
</div>
</div>
</footer>
<script src="admin/assets/js/imron.js"></script>
<script src="admin/assets/js/jquery-2.1.4.min.js"></script>
</body>
</html>