-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPertemuan-1.html
107 lines (100 loc) · 2.05 KB
/
Pertemuan-1.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<html>
<head>
<tittle>Hello</tittle>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<p>
edfhi <i>sjdjh</i>
<b>sjdhj</b>
<u>sjhshj</u>
<br>
<a href = "https://www.tokopedia.com/">Tok</a>
</p>
<ul>
<li>satu</li>
<li>dua</li>
</ul>
<hr>
<ol>
<li>A</li>
<li>B</li>
</ol>
<img src = "https://th.bing.com/th/id/OIP.849l15FRIKoTkVHg2MzkrgHaHD?w=184&h=180&c=7&r=0&o=5&pid=1.7" width = "100 px">
<table border = "1">
<thead>
<tr>
<th>No</th>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Jon</td>
</tr>
<tr>
<td>2</td>
<td>Dan</td>
</tr>
<tr>
<td>3</td>
<td colspan = "2">Colspan</td>
</tr>
<tr>
<td rowspan = "2">4 (Rowspan)</td>
<td>dul</td>
</tr>
<tr>
<td>duli</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>#</td>
<td>#</td>
<td>#</td>
</tr>
</tfoot>
</table>
<br><br>
<form>
Username
<input type = "text">
<br>
Password
<input type = "password">
<br>
Gender
<input type = "radio" name = "gender">Male
<input type = "radio" name = "gender">Female
Decription
<textarea></textarea>
<br>
City
<select>
<option>Jakarta</option>
<option>Bogor</option>
<option>Bandung</option>
</select>
<br>
CheckBox
<input type = "checkbox">A
<input type = "checkbox">B
<input type = "checkbox">C
<br>
Select a file
<input type = "file">
<br>
<input type = "submit" value = "Login">
<button type = "button">Reset </button>
</form>
<!-- komen -->
</body>
</html>