-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathexercise6.html
More file actions
28 lines (28 loc) · 781 Bytes
/
Copy pathexercise6.html
File metadata and controls
28 lines (28 loc) · 781 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>
<head>
<meta charset="UTF-8">
<title>Exercise #6: Simple form</title>
</head>
<body>
<form action="#">
<div>
<label for="first_name">First name:</label>
<input type="text" name="first_name" id="first_name"/>
</div>
<div>
<label for="last_name">Last name:</label>
<input type="text" name="last_name" id="last_name"/>
</div>
<div>
<label><input type="radio" name="gender" value="male"/>male</label>
<label><input type="radio" name="gender" value="female"/>female</label>
</div>
<div>
<label for="birth_date">Date of birth:</label>
<input type="date" name="birth_date" id="birth_date"/>
</div>
<input type="submit" value="Add"/>
</form>
</body>
</html>