-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
96 lines (87 loc) · 2.33 KB
/
form.html
File metadata and controls
96 lines (87 loc) · 2.33 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
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
<!DOCTYPE html>
<html>
<head> </head>
<body>
<table>
<form action="" method="post">
<tr>
<td>User Name:</td>
<td width="200" align="right"><input type="text" name="username" size="16"
max legth="30"/>
</td>
</tr>
<tr>
<td> Password:</td>
<td width="200" align="right"><input type="Password" name="Password" size="16"
max legth="30"/>
</td>
</tr>
<tr>
<td> Date of Birth:</td>
<td width="200" align="right"><input type="date" name="DateOfBirth"/>
</td>
</tr>
<tr>
<td>Web URL:</td>
<td width="200" align="right"><input type="url" name="Website" size="16"
max legth="30"/></td>
</tr>
<tr>
<td> Address:</td>
<td width="200" align="right"><input type="text" name="Address" size="16"
max legth="40"/>
</td>
</tr>
<tr>
<td>City:</td>
<td width="200" align="center"><select name="cities">
<option value="karachi"> Karachi </option>
<option value="sakhar"> Sakhar </option>
<option value="hyderabad"> Hyderabad </option>
<option value="sangharr"> Sangharr </option>
</select>
</td>
</tr>
<tr>
<td> State:</td>
<td width="200" align="right"><input type="text" name="state" size="16"
max legth="30"/> </td>
</tr>
<tr>
<td>Zip:</td>
<td width="200" align="right"><input type="text" name="zipcode" size="16"
max legth="30"/></td>
</tr>
<tr>
<td>Magzine:</td>
<td width="200" align="center"><select name="magzine" size="4" multiple="multiple">
<option value="newsweek"> Newsweek </option>
<option value="Time"> Time </option>
<option value="Fortune"> Fortune </option>
<option value="TVguide"> TV Guide </option>
<option value="Fortune"> Fortune </option>
<option value="TVguide"> TV Guide </option>
</select>
</td>
</tr>
</table>
</form>
<fieldset>
<legend>
Contect Details
</legend>
<p> Email: </br>
<input type="text" name="Email" size="15"
max legth="30"/>
</p>
<p> Mobile: </br>
<input type="text" name="mobile" size="15"
max legth="30"/>
</p>
<p> Telephone: </br>
<input type="text" name="telephone" size="15"
max legth="30"/>
</p>
</fieldset>
</body>
</html>