CARA MEMBUAT HTML :
<html>
<html>
<head>
<<title>coba tabel</title>
</head>
<body>
<caption>colspan dan rowspan</captions>
<table border="1">
<tr>
<th>nama</th>
<th>alamat</th>
<th colspan="2">no.telp</th>
</tr>
<tr>
<td>eka</td>
<td>ngawi</td>
<td>085735890444</td>
<td>081234567890</td>
</tr>
</table>
<table border="1">
<tr>
<th>nama</th>
<td>eka</td>
</tr>
<tr>
<th>alamat</th>
<td>ngawi</td>
</tr>
<tr>
<th rowspan="2">no.telp</th>
<td>085735890444</td>
</tr>
<tr>
<td>081234567890</td>
</tr>
</table>
<table border="1">
<tr>
<th>nama</th>
<th>alamat</th>
<th colspan="2">no.telp</th>
</tr>
<tr>
<td>eka</td>
<td>ngawi</td>
<td>085735890444</td>
<td>081234567890</td>
</tr>
</table>
<h3>with cellpadding</h3>
<table border="1"cellspacing="10">
<tr>
<th>nama</th>
<td>eka</td>
</tr>
<tr>
<th>alamat</th>
<td>ngawi</td>
</tr>
<tr>
<th rowspan="2">no.telp</th>
<td>085735890444</td>
</tr>
<tr>
<td>081234567890</td>
</tr>
</table>
</body>
cellpadding dan cellspasing
cellpadding: membuat spasi lebih dari antara sel dengan
bordernya
cellspasing:membuat jarak antar sel
<html>