-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
38 lines (38 loc) · 1.32 KB
/
form.html
File metadata and controls
38 lines (38 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body>
<h2></h2>
<form action="">
<fieldset>
<legend> Enquiry</legend>
Name : <input type="text" value="" placeholder="Enter Your Name"/><br><br>
Address : <textarea></textarea><br><br>
Gender :
<input type="radio" value="m" name="x"/> Male
<input type="radio" value="f" name="x"/> Female <br><br>
Country :
<select name="" id="">
<option> Please Select A Country</option>
<optgroup label="Asia">
<option value="india">India</option>
<option value="london"> London</option>
<option value="china"> China</option>
<option value="england"> England</option>
</optgroup>
</select><br><br>
Hobbies : <input type="checkbox" name="Hobbies[]"/> Reading
<input type="checkbox" name="Hobbies[]"/> Singing <br><br>
Profile Image :
<input type="file" name="image"/><br><br>
<input type="submit" value="send"/>
<input type="reset" value="reset"/>
</fieldset>
</form>
</body>
</html>