-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 1.59 KB
/
index.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Mmebuat List</h1>
<p>Daftar kampus di Jogja</p>
<ul>
<li>UGM</li>
<li>AMIKOM</li>
<li>AMIKOM LAGI</li>
<li>UPN</li>
</ul>
<h1>Membuat Tabel</h1>
<p>Daftar penduduk di Jogja</p>
<table>
<thead>
<tr>
<td>Kabupaten</td>
<td>Jumlah</td>
</tr>
</thead>
<tbody>
<tr>
<td>Sleman</td>
<td>1. 900.000</td>
</tr>
<tr>
<td>Bantul</td>
<td>2. 123.123</td>
</tr>
<tr>
<td>Gunungkidul</td>
<td>3. 120.400</td>
</tr>
<tr>
<td>Kulon Progo</td>
<td>4. 590.000</td>
</tr>
<tr>
<td>Anak Kota</td>
<td>5. 992.000</td>
</tr>
</tbody>
</table>
<h1>Membuat Form</h1>
<p>Form input data penduduk</p>
<form action="#">
<div>
<span>Masukkan nama Kabupaten</span>
<input type="text" placeholder="nama Kabupaten">
</div>
<div>
<span>Jumlah penduduk</span>
<input type="number" placeholder="Jumlah penduduk">
</div>
<div>
<span><button>Simpan</button></span>
</div>
</form>
</body>
</html>