-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
47 lines (46 loc) · 1.36 KB
/
forms.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
45
46
47
<!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>Forms</title>
</head>
<body>
<a href="index.html">Home Page</a>
<form action="">
<label for="">First Name</label>
<input type="text">
<label for="">Last Name</label>
<input type="text">
<br>
<label for="">Age</label>
<input type="number">
<label for="">Email</label>
<input type="email">
<br>
<label for="">Gender</label>
<input type="radio">
<label for="">Male</label>
<input type="radio">
<label for="">Female</label>
<br>
<label for="">Qualification</label>
<select name="" id="">
<option value="">Choose...</option>
<option value="">+2</option>
<option value="">Graduate</option>
<option value="">PG</option>
</select>
<label for="">Skills</label>
<input type="checkbox">
<label for="">HTML</label>
<input type="checkbox">
<label for="">CSS</label>
<input type="checkbox">
<label for="">JS</label>
<br>
<input type="submit" name="" value ="Submitt forms" id="">
</form>
</body>
</html>