-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformget.html
More file actions
40 lines (34 loc) · 1.14 KB
/
formget.html
File metadata and controls
40 lines (34 loc) · 1.14 KB
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
</head>
<body>
<form method="post">
<p>User Details</p>
<input type="text" name="txtname"></input> <br />
<textarea name="txtarea" rows="10" cols="100"></textarea> <br />
<input name="txtpwd" type="password" /> <br />
<input type="radio" name="gender" /> Male
<input type="radio" name="gender" /> Female
<br />
<input type="radio" name="color" /> Blue
<input type="radio" name="color" /> Red
<input type="radio" name="color" /> Yellow
<br />
<input name="chkfood" type="checkbox" value="cfry" /> chicken fry
<input name="chkfood" type="checkbox" value="cchik" /> chilli chicken
<input name="chkfood" type="checkbox" value="veg" /> Veg
<br />
<select>
<option>Blue</option>
<option selected>Red</option>
<option>Yello</option>
</select>
<br />
<input type="hidden" name="hdnname" value="user details" />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>