This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Tuesday, February 25, 2014

Contoh Tabel HTML


NamaJenis Kelamin Nomor telepon Kelas Alamat
Laki-laki perempuan Handphone Rumah
Mega Dwi Nurlaili - Perempuan 0859321464222 0351 223355 XII-IS 1 Jln. Raya Ngawi-Madiun km.08
Aprilia Susilowati - Perempuan 0859225533661 - XII-IS 1 Jln. Raya Diponegoro,pelem,ngawi
Asprila Maulana Akbar Laki-laki - 0859321464455 0351 223355 XII-IS 1 Jln. Raya Jagaraga,ngawi
Estinia Agny Fiidini - perempuan 0859321466582 - XII-IS 1 Jln. Raya karang asri, gg grenjeng
Novi mahardani p - perempuan 0859321466871 0351 223355 XII-IS 1 Jln. Raya kwadungan
Ivin Yuni Surtika - perempuan 0859321462542 0351 223355 XII-IS 1 Jln. Raya Jambe,ngawi

<html>
<table>
<title> COBA TABEL HTML </title>
</head>
<body bgcolor="Pink">
<caption> TABEL DAFTAR TEMAN-TEMAN KU </caption>
<table border="1">
<tr>
<th rowspan="2"> Nama </th>
<th colspan="2"> Jenis Kelamin </th>
<th colspan="2"> Nomor telepon </th>
<th Rowspan="2"> Kelas </th>
<th rowspan="2"> Alamat </th>
</tr>
<tr>
<th scope="col"> Laki-laki </th>
<th scope="col"> perempuan </th>
<th scope="col"> Handphone </th>
<th scope="col"> Rumah </th>
</tr>
<tr>
<td> <font color="Black" > Mega Dwi Nurlaili </font></td>
<td align="center">-</td>
<td> Perempuan </td>
<td> 0859321464222 </td>
<td> 0351 223355 </td>
<td> XII-IS 1 </td>
<td> Jln. Raya Ngawi-Madiun km.08 </td>
</tr>
<tr>
<td> <font color="green" > Aprilia Susilowati</font></td>
<td align="center">-</td>
<td> Perempuan </td>
<td> 0859225533661 </td>
<td align="center">-</td>
<td> XII-IS 1 </td>
<td> Jln. Raya Diponegoro,pelem,ngawi </td>
</tr>
<tr>
<td> <font color="blue" > Asprila Maulana Akbar </font></td>
<td> Laki-laki </td>
<td align="center">-</td>
<td> 0859321464455 </td>
<td> 0351 223355 </td>
<td> XII-IS 1 </td>
<td> Jln. Raya Jagaraga,ngawi </td>
</tr>
<tr>
<td> <font color="purple" > Estinia Agny Fiidini </font></td>
<td align="center">-</td>
<td> perempuan </td>
<td> 0859321466582 </td>
<td align="center">-</td>
<td> XII-IS 1 </td>
<td> Jln. Raya karang asri, gg grenjeng </td>
</tr>
<tr>
<td> <font color="brown
" > Novi mahardani p </font></td>
<td align="center">-</td>
<td> perempuan </td>
<td> 0859321466871 </td>
<td> 0351 223355 </td>
<td> XII-IS 1 </td>
<td> Jln. Raya kwadungan </td>
</tr>
<td><font color="black" > Ivin Yuni Surtika </font></td>
<td align="center">-</td>
<td> perempuan </td>
<td> 0859321462542 </td>
<td> 0351 223355 </td>
<td> XII-IS 1 </td>
<td> Jln. Raya Jambe,ngawi </td>
</tr>
</table>
</body>
</html>