-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
60 lines (53 loc) · 1.66 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Singin/login Form</title>
</head>
<body>
<form action="http://www.example.com/login.php" method="GET">
<p>
<input type="radio" name="Gender"> Male
<input type="radio" name="Gender">Female
</p>
<p>
Interest:
<input type="checkbox" name="Interest" id="men" />Men's Clothing
<input type="checkbox" name="Interest" id="mwn"/>Women clothing
<input type="checkbox" name="Interest" id="acc"/>Acceriories
<input type="checkbox" name="Interest" id="elc">Electonic
</p>
<p>
Nationality
<select name="Countries" >
<option value="pakistan">Pakistan</option>
<option value="USa">USA</option>
<option value="China">China</option>
<option value="CAnda">Canda</option>
</select>
</p>
<p>First Name
<input type="text" name="firstname" size="6" maxlength="3">
Last Name
<input type="text" name="lastname" size="6" maxlength="3">
</p>
<p>
Password:
<input type="password">
</p>
Comments
<p>
<textarea name="Comment" id="Sd78LO" cols="30" rows="10"> Enter your comment here.......</textarea>
</p>
<p>
UPload a picture
</p>
<input type="file" name="Update profile" >
<br>
<br>
<input type="submit" value="Upload">
<input type="Submit">
</form>
</body>
</html>