-
Notifications
You must be signed in to change notification settings - Fork 0
/
buatForm.html
43 lines (42 loc) · 1.89 KB
/
buatForm.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
,<html>
<head>
<title>Membuat Form</title>
</head>
<body>
<form method="GET" action="gambar.html">
<h4>FORM</h4>
<input type="text" name="var1" size="30" value="Enter Your Name Here"><BR></BR>
<input type="text" name="var2" size="30" value="Enter Your Address Here">
<BR></BR>
<B>How Old Are You?</B>
<BR>
<input type="radio" name="var4" value="r1">10-15></BR>
<input type="radio" name="var4" value="r2">16-20><BR>
<input type="radio" name="var4" value="r3">21-25><BR><BR>
<b>Which one do you have?</b><br><br>
<input type="checkbox" name="vehicle1" value="Bike" checked>I have a bike <br>
<input type="checkbox" name="vehicle2" value="Car" checked>I have a car <br>
<input type="checkbox" name="vehicle3" value="Boat" checked>I have a boat <br>
<input type="checkbox" name="vehicle4" value="Plane" checked>I have a plane <br><br>
<b>where are you from</b>
<br>
<select name="var6" size="1">
<option value="BG">Bulgaria
<option value="UK">United Kingdom
<option value="USA">USA
<option value="INA" selected>Indonesia
</select>
<br>
<br>
<b>
Enter Your Private Code
<input type="password" name="var3" size="30">
</b><br><br>
<b>Enter Your Commnent</b><br>
<textarea name="" id="" cols="30" rows="10"></textarea>
<br><br>
<input type="submit" name="var5" value="Send">
<input type="reset" name="var6" value="Clear">
</form>
</body>
</html>