-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform2.html
39 lines (38 loc) · 910 Bytes
/
form2.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
<!DOCTYPE html>
<html>
<head>
<title>
Registration Form
</title>
</head>
<body>
<form>
<p>
<label> First Name</label>
<input type = 'text' placeholder = "Enter Your First Name" required>
</p>
<p>
<label> Last Name</label>
<input type = 'text' placeholder = "Enter Your Last Name" required>
</p>
<p>
<label>Email</label>
<input type="email">
</p>
<p>
<label>Password</label>
<input type="password">
</p>
<p>
<label>Sex</label>
<input type= "radio">
Male
<input type="radio">
Female
</p>
<p>
<input type = "submit">
</p>
</form>
</body>
</html>