-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tutorial21.html
28 lines (27 loc) · 994 Bytes
/
Tutorial21.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
<!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>Document</title>
</head>
<body>
<h1>HTML FORMS</h1>
<form >
<label for="username">username : </label>
<input type="text" id="username"> <br> <br>
<label for="Password">Password: </label>
<input type="password" id="Password"> <br> <br>
<label for="Email">Email: </label>
<input type="email"id="email">
<p>Select your gender</p>
<label for="male">Male </label>
<input type="radio" name="gender" id="male"><br>
<label for="female">Female</label>
<input type="radio" name="gender" id="female"><br>
<label for="other">Other</label>
<input type="radio" name="gender" id="Other"><br>
<input type="Submit" value="sign in">
</body>
</html>