-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtabungan.php
31 lines (27 loc) · 956 Bytes
/
tabungan.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
<?php include ("header.php") ?>
<?php require ("fungsi.php") ?>
<div id="inner">
<div id="main">
<h2>Pemilihan Jenis Tabungan Bank</h2>
<div id="tabs" class="htabs">
<ul>
<li><a href="#tab1">Tabungan Konvensional</a></li>
<li><a href="#tab2">Tabungan Syariah</a></li>
<li><a href="#tab3">Tabungan Konvensional & Syariah</a></li>
</ul>
<div id="tab1" class="tab-content" style="display: block;">
<?php include "tabkonvensional.php"; ?>
</div>
<div id="tab2" class="tab-content" style="display: block;">
<?php include "tabsyariah.php"; ?>
</div>
<div id="tab3" class="tab-content" style="display: block;">
<?php include "tabsemua.php"; ?>
</div>
</div>
<script type="text/javascript"><!--
$( "#tabs" ).tabs();
//--></script>
</div>
</div>
<?php include ("footer.php")?>