-
Notifications
You must be signed in to change notification settings - Fork 0
/
COMPLEXFORM.HTML
68 lines (65 loc) · 2.32 KB
/
COMPLEXFORM.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
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body>
<h2>Complex Form</h2>
<form>
<fieldset>
<legend>personal Information:</legend>
<label for="name">Name:</label>
<input type="text" name="name" id="name">
<br><br>
<label for="email">Email ID:</label>
<input type="email" name="email" id="email">
<br><br>
<label for="password">Password:</label>
<input type="password" name="password" id="password">
<br><br>
<label for="fileupload">Resume:</label>
<input type="file" name="resume" accept=".pdf,.docx">
<br><br>
<label for="dateofbirth">Date of birth:</label>
<input type="date" name="dateofbirth" id="dateofbirth">
<br>
<br>
<span>Gender</span>
<input type="radio" name="radio" id="radio1">
<label for="radio1">male:</label>
<input type="radio" name="radio" id="radio2">
<label for="radio2">Female:</label>
<br><br>
<label for="country"></label>
<select name="country" id="country">
<option value="pakistan">pakistan</option>
<option value="USA">USA</option>
</select>
</fieldset>
<fieldset>
<legend>Address</legend>
<label for="street">Street:</label>
<input type="text" name="street" id="street">
<br><br>
<label for="city">city:</label>
<input type="text" name="city" id="city">
<br><br>
<label for="state">State:</label>
<input type="text" name="state" id="state">
<br><br>
</fieldset>
<fieldset>
<legend>Other Information</legend>
<label for="textarea1">Comments:</label>
<br><br>
<textarea name="textarea1" id="textare1" cols="10" rows="5"></textarea>
<label for="term">I agree to the terms:</label>
<input type="checkbox" name="term" id="term">
</fieldset>
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>