-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQ11.html
45 lines (43 loc) · 1.95 KB
/
Q11.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
<!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 style="background-color:aqua" >
<form>
<h1>Registration Form</h1>
<label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="Enter your Name" /><br /><br />
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="Enter your Email" /><br /><br />
<label for="address">Address:</label>
<input type="text" name="address" id="address" placeholder="Enter your Address" /><br /><br />
<label for="state">State: </label>
<select name="state" id="state">
<option selected>Select your state</option>
<option>Tamilnadu</option>
<option>Kerla</option>
<option>Karnatakaa</option>
<option>Telugana</option>
</select><br /><br />
<label for="zipcode">Zipcode:</label>
<input type="text" name="zipcode" id="zipcode" placeholder="Enter your zipcode" /><br /><br />
Gender:<input type="radio" name="gender" id="male"/>
<label for="gender">Male</label>
<input type="radio" name="gender" id="female">
<label for="gender">Female</label><br /><br />
Languages:<input type="checkbox" name="language1" id="language1" value="tamil">
<label for="tamil">Tamil</label>
<input type="checkbox" name="language2" id="language2" value="english">
<label for="english">English</label>
<input type="checkbox" name="language3" id="language3" value="others">
<label for="others">Others</label><br /><br />
<label for="photoid">Photo ID</label>
<input type="file" name="photoid" id="photoid" /> <br/><br />
<input type="submit" />
<input type="reset" />
</form>
</body>
</html>