Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

html

<head>
<title> Membuat Colspan dan Rowspan </title>
</head>

<body>
Daftar nilai KDJD Kelas X

<table border=1>
<tr align=center>
<th rowspan=2 align=center> No </th>
<th rowspan=2 align=center> Nama </th>
<th rowspan=2 align=center> Jurusan </th>
<th colspan=3 align=center> Nilai Harian </th>
</tr>

</tr>
<th> KD.1 </th>
<th> KD.2 </th>
<th> KD.3 </th>
</tr>

<tr>
<td> 1. </td>
<td> Arman M. </td>
<td> Multimedia </td>
<td> 98 </td>
<td> 85 </td>
<td> 88 </td>

<tr>
<td> 2. </td>
<td> Hesli Sambo </td>
<td> Multimedia </td>
<td> 86 </td>
<td> 84 </td>
<td> 100 </td>
</tr>

</table>

</body>

</html>

You might also like