-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinndex1.html
38 lines (38 loc) · 1.25 KB
/
inndex1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="server">
<label for="Name">Name:</label>
<input type="text" id="Name" placeholder="enter name">
<br>
<label for="Sex">Sex:</label>
<input type="radio" id="Sex" value="Male">
<label for="Sex">Male</label>
<input type="radio" id="Sex" value="Female">
<label for="Sex">Female</label>
<br>
<label for="Country">Country:</label>
<select name="Country" id="Country" >
<option value="Select an option"> select an option</option>
<option value="India">India</option>
<option value="Nepal">Nepal</option>
<option value="USA">USA</option>
<option value="Canada">Canada</option>
</select>
<br>
<label for="Message">Message:</label>
<br>
<textarea name="Message" id="Message"></textarea>
<br>
<input type="checkbox" name="subscribe" id="subscribe">
<label for="subscribe">subscribe?</label>
<br>
<button type="submit">submit</button>
</form>
</body>
</html>