-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
34 lines (32 loc) · 748 Bytes
/
form.html
File metadata and controls
34 lines (32 loc) · 748 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title> Form</title>
</head>
<body>
<h2>Form</h2>
<form>
Name:<input type ="text" name="name"value ="" placeholder="Enter youe name here"/>
</br>
</br>
Adderss:<textarea name="address"> </textarea>
</br>
</br>
Gender:
<input type="radio"value="m"name="gender"/>Male
<input type="radio"value="f"name="gender"/>Female
<input type="radio"value="o"name="gender"/>Other
</br>
</br>
Country:
<select>
<option>Please Select the option </option>
<optgroup label ="ASIA">
<option value ="india">India</option>
<option value ="shrilanka">Shri Lanka</option>
<option value ="china">China</option>
</optgroup>
<option value="usa">USA</option>
</select>
</body>
</html>