-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path4.html
More file actions
30 lines (30 loc) · 858 Bytes
/
4.html
File metadata and controls
30 lines (30 loc) · 858 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>belajar membuat tabel di html</title>
</head>
<body>
<table border="1">
<tr>
<td>baris 1 / kolom 1</td>
<td>baris 1 / kolom 2</td>
<td>baris 1 / kolom 3</td>
</tr>
<tr>
<td>baris 2 / kolom 1</td>
<td>baris 2 / kolom 2</td>
<td>baris 2 / kolom 3</td>
</tr>
<tr>
<td>baris 3 / kolom 1</td>
<td>baris 3 / kolom 2</td>
<td>baris 3 / kolom 3</td>
</tr>
<tr>
<td>baris 4 / kolom 1</td>
<td>baris 4 / kolom 2</td>
<td>baris 4 / kolom 3</td>
</tr>
</table>
</body>
</html>