Created
September 21, 2016 12:10
-
-
Save vianhanif/4ce3848bac4f366e2c505a2eae9ed98a to your computer and use it in GitHub Desktop.
complex table example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table class="table table-striped"> | |
<thead> | |
<tr> | |
<th>No</th> | |
<th colspan="2" scope="colgroup">Provinsi</th> | |
<th colspan="2" scope="colgroup">Kabupaten</th> | |
<th>Bencana</th> | |
<th colspan="2">Waktu Kejadian</th> | |
</tr> | |
<tr> | |
<th></th> | |
<th scope="col">Kode</th> | |
<th scope="col">Nama</th> | |
<th scope="col">Kode</th> | |
<th scope="col">Nama</th> | |
<th colspan="4"></th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>...</td> | |
<td>...</td> | |
<td>...</td> | |
<td>...</td> | |
<td>...</td> | |
<td>...</td> | |
<td>...</td> | |
<td><a href="#">Ubah</a></td> | |
<td><a href="#">Hapus</a></td> | |
</tr> | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment