-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlatihan13.html
37 lines (37 loc) · 1.03 KB
/
latihan13.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<html>
<head>
<title>Belajar gabungkan row dan col tabel</title>
</head>
<body>
<table cellpadding="10" border="1">
<thead>
<tr>
<th rowspan="2" bgcolor="pink">Bulan</th>
<th colspan="2" bgcolor="agua">Hasil Panen</th>
</tr>
<tr>
<th bgcolor="blue">Padi</th>
<th bgcolor="light blue">Kacang</th>
</tr>
</thead>
<tbody>
<tr>
<td>Januari</td>
<td>500 kg</td>
<td>231 kg</td>
</tr>
<tr>
<td>Februari</td>
<td>510 kg</td>
<td>249 kg</td>
</tr>
<tr>
<td>Maret</td>
<td>470 kg</td>
<td>330 kg</td>
</tr>
tr
</tbody>
</table>
</body>
</html>