-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
49 lines (42 loc) · 895 Bytes
/
forms.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
<!doctype html>
<html>
<head>
<title> here </title>
</head>
<body>
<fieldset>
<legend>Register</legend>
<form>
First name: <input type="text">
<br><br>
Last name: <input type="text">
<br><br>
I have a bike:<input type="checkbox" >
<br><br>
I have a car:<input type="checkbox" >
<br><br>
I have a airplane:<input type="checkbox" >
<br><br>
Male:<input name="sex" type="radio" value="male" >
   
Female:<input name="sex" type="radio" value="female">
<br><br>
<select name="cars">
<option value="volvo">Volvo</option>
<option value="toyota">Toyota</option>
<option value="benz" selected="Benz">Benz</option>
<option value="tesla">Tesla</option>
</select>
<br><br>
<label>Enter message:<br>
<textarea rows="5" cols="30">
Entered
</textarea><br><br>
<input type="button" value="OK">
   
<input type="button" value="Cancel">
</label>
</form>
</fieldset>
</body>
</html>