-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tutorial22.html
44 lines (35 loc) · 1.41 KB
/
Tutorial22.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
44
<!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 method='GET' action="Class12-Exercise 1-CypherSchools.html">
<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><br>
<label for="age-group">Select you age group</label>
<select name="age-group-values" id="age-group">
<option value="5-10">5-10</option>
<option value="11-21">11-21</option>
<option value="21-31">21-31</option>
<option value="31-41">31-41</option>
</select><br>
<br>
<input type="Submit" value="sign in">
</body>
</html>