-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tutorial24.html
43 lines (38 loc) · 1.36 KB
/
Tutorial24.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
!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>Sign Up form</h2>
<form>
<input type="text" placeholder="First name"> <br><br>
<input type="text" placeholder="Last name"> <br><br>
<input type="email" placeholder="Email"> <br><br>
<input type="password" placeholder="password"> <br><br>
<!-- radio buttons -->
<p>Select gendre</p>
<label for="male">Male</label>
<input type="radio" id="male"> <br>
<label for="female">Female</label>
<input type="radio" id="female"> <br>
<label for="other">other</label>
<input type="radio" id="other"> <br> <br>
<!-- dropdown list -->
<label for="country">Country</label>
<select id="Country">
<option value="India">India</option>
<option value="America">America</option>
<option value="Nepal">Nepal</option>
</select>
<br>
<p>Write about yourself</p>
<textarea name="" id="" cols="30" rows="10" placeholder="type here"></textarea>
<br>
<input type="Submit" value="Submit">
</form>
</body>
</html>