-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPracticeQ9.html
More file actions
28 lines (28 loc) · 864 Bytes
/
Copy pathPracticeQ9.html
File metadata and controls
28 lines (28 loc) · 864 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration form</title>
</head>
<body>
<form>
<h1>Registration Form</h1>
<input type="Text" placeholder="First name"/>
<input type="Text" placeholder="Last name"/>
<br>
<label for="Gender"> Select your gender:</label>
<select name="Gender" id="Gender">
<option value="m">Male</option>
<option value="f">Female</option>
<option value="o" >other</option>
</select>
<br>
<label>Do you agree to all ters and service</label>
<input type="checkbox" id="Yes,i agree" name="Yes,i agree">
<label>Yes,i agree</label>
<br>
<button>Register</button>
</form>
</body>
</html>