-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
44 lines (44 loc) · 1.13 KB
/
contact.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
39
40
41
42
43
44
<!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" />
<link rel="stylesheet" href="style-main.css" />
<title>Document</title>
</head>
<body>
<h1>Sample Contact</h1>
<p>Ini Adalah Halaman Contact</p>
<table>
<header>
<tr>
<th>No</th>
<th>Nama</th>
<th>Alamat</th>
<th>Perkerjaan</th>
</tr>
</header>
<tbody>
<tr>
<td>1</td>
<td>Dian Hariyah</td>
<td>Ds. Gajah No. 521, Mojokerto 15223, SulTra</td>
<td>Perum Wibisono (Persero) Tbk</td>
</tr>
<tr>
<td>2</td>
<td>Eko Dongoran</td>
<td>Ds. Ir. H. Juanda No. 172, Bekasi 69845, Banten</td>
<td>wirausahawan</td>
</tr>
<tr>
<td>3</td>
<td>Sidiq Budiman</td>
<td>Kpg. Supono No. 712, Dumai 96970, KalBar</td>
<td>CV Prastuti Wibowo</td>
</tr>
</tbody>
</table>
</body>
</html>