Membuat Tabel Sederhana HTML

Bookmark and Share
Bahan ini Hanya Sebagai Pelengkap Bahan HTML

1. Tabel Satu Baris, Satu Kolom
Satu Baris Satu Kolom
 <table width="250" border="1" align="center">
  <tr>
    <td>&nbsp;</td>
  </tr>
</table>

2. Tabel 2 Baris
Kolom 1Kolom 2
<table width="250" border="1">
    <tr>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
  </table>

3. Tabel 2 Kolom
Baris 1
Baris 2
 <table width="250" border="1" align="center">
    <tr>
      <td>Baris 1 </td>
    </tr>
    <tr>
      <td>Baris 2 </td>
    </tr>
  </table>


4. Tabel 2 Baris 2 Kolom
A B
C D
<table width="250" border="1" align="center">
    <tr>
      <td>A</td>
      <td>B</td>
    </tr>
    <tr>
      <td>C</td>
      <td>D</td>
    </tr>
  </table>

5. Tabel 1 Kolom Dengan pebesar cell
Cell Dipebesar
<table width="249" border="1" align="center" cellpadding="5" cellspacing="5">
    <tr>
      <td width="225">&nbsp;</td>
    </tr>
  </table>

6. Tabel dengan border di pesar
Border dipebesar
<table width="250" border="5" align="center" cellpadding="5" cellspacing="5">
    <tr>
      <td height="31">&nbsp;</td>
    </tr>
  </table>

7. Tabel pluss warna background
Background
<table width="250" border="5" cellpadding="5" cellspacing="5" bgcolor="#FFFF00">
    <tr>
      <td>&nbsp;</td>
    </tr>
  </table>

8. Tabel Pluss warna border
Border warna
<table width="250" border="5" align="center" cellpadding="5" cellspacing="5" bordercolor="#000000">
    <tr>
      <td>&nbsp;</td>
    </tr>
  </table>

9. Tabel Plus warna background dan border
warna border dan background
<table width="250" border="5" align="center" cellpadding="5" cellspacing="5" bordercolor="#000000" bgcolor="#FFFF00">
    <tr>
      <td>&nbsp;</td>
    </tr>
  </table>

{ 0 komentar... Views All / Send Comment! }

Posting Komentar