-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLastTugas.html
67 lines (63 loc) · 2.27 KB
/
LastTugas.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
<!DOCTYPE html>
<html>
<head>
<title>Tugas Akhir dari Web Programming UNPAS</title>
</head>
<body>
<h1>Tugas Akhir</h1>
<h2>Tutorial HTML Dasar : Web Programming UNPAS</h2>
<p>Penonton diminta untuk membuat form menggunakan pengetahuan dan tutorial-tutorial sebelumnya</p>
<img src="./Tugas Akhir.png" alt="" width="50%">
<br>
<hr>
<br>
<form action="">
<table border="0" cellspacing="0" cellpadding="20">
<tr>
<td><label for="Text">Text :</label></td>
<td><input type="text" name="" id="Text"></td>
</tr>
<tr>
<td><label for="Password">Password :</label></td>
<td><input type="password" name="" id="Password"></td>
</tr>
<tr>
<td colspan="2">
<label for="Radio1">Radio 1</label>
<input type="radio" name="Radio" id="Radio1">
<label for="Radio1">Radio 2</label>
<input type="radio" name="Radio" id="Radio2">
</td>
</tr>
<tr>
<td colspan="2">
<label for="Check1">checkbox 1</label>
<input type="checkbox" name="Check" id="Check1">
<label for="Check2">checkbox 2</label>
<input type="checkbox" name="Check" id="Check2">
</td>
</tr>
<tr>
<td>
<label for="ComboBoxTitle">Combo Box</label>
</td>
<td>
<select name="ComboBox" id="ComboBoxTitle">
<option value="Option1">Option1</option>
<option value="Option2">Option2</option>
<option value="Option2">Option3</option>
</select>
</td>
</tr>
<tr>
<td>
<label for="TextArea">TextArea :</label>
</td>
<td>
<textarea name="" id="" cols="30" rows="10"></textarea>
</td>
</tr>
</table>
</form>
</body>
</html>