Senin, 26 September 2016

tabel cellspacing



<html>
                  <head><title>nested table 3</title></head>
<body>
          <table border="3" cellpadding="10"
cellpecing="10">
       <td>
sel berikutnya yang satu ini memiliki tabek kecil di dalamnya, tabel di dalam tabel.
       </td>
       <td> <table border="3" cellpadding="3"
cellpacing="3">
                     <td>tabel ke 2</td>
                     <td>tabel ke 2</td>
                     <tr>
                     </tr>
                     </table></td>
      </table>

</body>          <td>tabel ke 2</td>
                     <td>tabel ke 2</td>
</html>










tabel bersarang

<html>
<head>
<title>tabel bersarang</title>
</head>
<body>
<table border=1>
<tr>
<td>
<table border=1>
<tr>
<td>kolom 1 baris 1</td>
<td>kolom 2 baris 1</td>
</tr>
<tr>
<td>kolom 1 baris 2</td>
<td>kolom 2 baris 2</td>
</tr>
</table>
</td>
<td>kolom 2 baris 1</td>
</tr>
<tr>
<td>kolom 1 baris 2</td>
<td>kolom 2 baris 2</td>
</tr>
</table></body>
</html>

Minggu, 25 September 2016

tabel dalam tabel

<html>
<head>
<title>table didalam tabel</title>
</head>
<body>
<table border=1 bgcolor>
<tr>
<td rowspan=2>
<table border=1>
<tr>
<td>table dalam tabel</td>
</tr>
</table>
</td>
<td rowspan=2>
<table border=1>
<tr>
<td>table dalam tabel</td>
</tr>
</table>
</td>
</tr>
<tr>
</tr>
</table>
</body>
</html>

Minggu, 04 September 2016

table dengan colspan

<html>
<head>
<title>Tabel dengan colspan</title>
</head>
<body>
<table width="500" border="1">
<tr>
<th scope="col">perumahan</th>
<th colspan="4"scope="col">Tipe / Luas
tanah (m<sup>2</sup>) </th>
</tr>
<tr>
<td>Griya Indah permai </td>
<td>21/60</td>
<td>36/90</td>
<td>45/120</td>
<td>54/120</td>
</tr>
</table>
</body>
</html>










tabel dengan rowspan

<head>
<title>tabel Dengan Rowspan</title>
</head>


<body>
<table width="500" border ="1">
<tr>
<th scope="col">Name Perumahan </th>
<th scope="col">Tipe / Luas tanah
(m<sup>2</sup>)</th>
</tr>
<tr>
<td rowspan ="4">Griya Indah Peremai</td>
<td>21 /60 </td>
</tr>
<tr>
<td>36 / 90 </td>
</tr>
<tr>
<td>45  /  120 </td>
</tr>
<td>54  /120  </td>
</tr>
</table>
</body>
</html>