You are on page 1of 7

<body> <table border="1"> <tr> <td>Baris Satu Kolom Satu</td> <td>Baris Satu Kolom Dua</td> </tr> <tr> <td>Baris

Dua Kolom Satu</td> <td>Baris Dua Kolom Dua</td> </tr> </table> </body>

<body> <table border="1"> <caption align="bottom">Judul Tabel</caption> <thead align="right"><tr><td>Header Tabel</td></tr></thead> <tfoot align="center"><tr><td>Footer Tabel</td></tr></tfoot> <tbody> <tr> <th>Header Satu</th> <th>Header Dua</th> </tr> <tr> <td>Isi Body Cell Satu</td> <td>Isi Body Cell Dua</td> </tr> </tbody> </table> </body>

TABEL DENGAN BORDER=1 <table border=1> <tr> <th>Nama Mahasiswa</th> <th>Alamat</th> </tr> <tr> <td>Totok</td> <td>Jalan Berbatu 10 Yogyakarta</td> </tr> <tr> <td>Titik</td> <td>Jalan Hati-Hati 5 Klaten</td> </tr> </table>

<br/> Tabel dengan BORDER=10 <table border=10> <tr> <th>Nama Mahasiswa</th> <th>Alamat</th> </tr> <tr> <td>Totok</td> <td>Jalan Berbatu 10 Yogyakarta</td> </tr> <tr> <td>Titik</td> <td>Jalan Hati-Hati 5 Klaten</td> </tr> </table>

<table border="1" width="400px"> <tr height="50"> <th valign="top">Nama Barang</th> <th valign="bottom" width="20%">Stok</th> </tr> <tr> <td>Baju</td> <td align="right">120</td> </tr> <tr> <td>Pensil</td> <td align="right">30</td> </tr> </table>

<table border=1 cellpadding=20 cellspacing=35> <tr> <td>SATU</td> <td>DUA</td> </tr> <tr> <td>TIGA</td> <td>EMPAT</td> </tr> </table>

<table BORDER=1> <tr> <td>Baris Satu Kolom Satu</td> <td>Baris Satu Kolom Dua</td> <td>Baris Satu Kolom Tiga</td> </tr> <tr> <td>Baris Dua Kolom Satu</td> <td colspan=2><b>Baris 2 Kolom Dua penggabungan Kolom Dua dan Tiga</b></td> </tr> <tr> <td>Baris Tiga Kolom Satu</td> <td>Baris Tiga Kolom Dua</td> <td>Baris Tiga Kolom Tiga</td> </tr> </table>

<table border=1> <tr> <td>Baris 1 Kolom Satu</td> <td>Baris 1 Kolom Dua</td> </tr> <tr> <td rowspan=2><b>Baris 2 Kolom Satu Penggabungan baris 2 dan 3</b></td> <td>Baris 2 Kolom Dua</td> </tr> <tr> <td>Baris 3 Langsung Kolom 2</td> </tr> <tr> <td>Baris 4 Kolom Satu</td> <td>Baris 4 Kolom Dua</td> </tr> </table>

<table border="1" style="background-color:yellow;"> <tr> <th>Nama Barang</th> <th>Stok</th> </tr> <tr style="background-color:cyan"> <td>Pensil</td> <td style="background-color:green">120</td> </tr> <tr> <td>Indomie Rasa Ayam Goreng</td> <td>30</td> </tr> </table>

You might also like