-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlatihan7.html
38 lines (38 loc) · 997 Bytes
/
latihan7.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
38
<!DOCTYPE html>
<html>
<head>
<title>Belajar Tabel</title>
</head>
<body>
<center><h3>Curiculum Vitae</h3></center>
<table border="1" align="center">
<tr>
<th colspan="3" bgcolor="yellow">BIODATAKU</th>
</tr>
<tr>
<td rowspan="4">
<img src="https://upload.wikimedia.org/wikipedia/id/f/fa/SMK_NEGERI_1_NGLEGOK_LOGO.png" width="200" />
</td>
</tr>
<tr>
<td>Nama</td>
<td>Reyhan Vincent Prabowo</td>
</tr>
<tr>
<td>Keahlian</td>
<td>Sysadmin</td>
</tr>
<tr>
<td>Materi</td>
<td>
<ul>
<li>Debian Linux</li>
<li>Proxmox Virtualization</li>
<li>Docker</li>
<li>Cloud</li>
</ul>
</td>
</tr>
</table>
</body>
</html>