Pemrograman Web Dinamis (post ke 2)
Untuk web dinamis minggu sekarang ialah membuat biodata sederhana dari HTML
Seperti ini
<html>
<head>
<title>Tabel</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Nama</th>
<th>Gol.Darah</th>
</tr>
</thead>
<tbody>
<tr>
<td>Resti</td>
<td rowspan="2">A</td>
</tr>
<tr>
<td>Risa</td>
<td colspan="2" alighn="center">PMI TASIKMALAYA </td>
</tr>
</body>
</table>
</html>
Komentar
Posting Komentar