-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10_forms.html
46 lines (41 loc) · 1.47 KB
/
10_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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Forms</title>
</head>
<body>
<h1>Login Form</h1>
<form>
<label for="email"> Email: <input type="text" name="email" /></label>
<label for="password"
>password: <input type="text" name="password"
/></label>
<button type="button">Submit</button>
<button type="reset">Reset</button>
<h2>Improved Login</h2>
<label for="email">Email: <input type="email" name="email" /></label>
<label for="password">
Password:
<input type="password" name="password" />
</label>
<button type="button">Submit</button>
<button type="reset">Reset</button>
<h2>Write your feedback here</h2>
<label for="feedback">
Feedback:
<textarea name="feedback" cols="30" rows="10"></textarea>
</label>
<h2>Select your gender</h2>
<label for="gender">Male: <input type="radio" /></label>
<label for="gender">Female: <input type="radio" /></label>
<h2>Select your subject</h2>
<label for="subject">Math <input type="checkbox" /></label>
<label for="subject">English <input type="checkbox" /></label>
<label for="subject">Science <input type="checkbox" /></label>
<h2>Select your month</h2>
<label for="month"><input type="month" name="month" id="month" /></label>
</form>
</body>
</html>