-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable_span.html
More file actions
29 lines (29 loc) · 1.42 KB
/
Copy pathtable_span.html
File metadata and controls
29 lines (29 loc) · 1.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menggunakan Tabel Sederhana</title>
</head>
<body>
<h2><font face="'arial">Tabel Nilai Matakuliah</font></h2>
<table bgcolor="silver" border="0" cellspacing="1" cellpadding="0">
<tr bgcolor="navy" height="30">
<th width="150" rowspan="2"><font face="arial" size="2" color="white">NPM</font></th>
<th width="150" rowspan="2"><font face="arial" size="2" color="white">Kode Matakuliah</font></th>
<th colspan="2"><font face="'arial" size="2" color="white">Nilai</font></th>
</tr>
<tr bgcolor="navy" height="30">
<th width="150"><font face="arial" size="2" color="white">UTS</font></th>
<th width="150"><font face="arial" size="2" color="white">UAS</font></th>
</tr>
<tr bgcolor="white">
<td align="center" width="150" height="15"><font face="arial" size="2"10110></font></td>
<td align="center" width="150" height="15"><font face="arial" size="2"10110></font></td>
<td align="center" width="150" height="15"><font face="arial" size="2"10110></font></td>
<td align="center" width="150" height="15"><font face="arial" size="2"10110></font></td>
</tr>
</table>
</body>
</html>