Skip to content

Commit e1d1b0d

Browse files
Update Question11.html
1 parent b4ec68d commit e1d1b0d

File tree

1 file changed

+20
-28
lines changed

1 file changed

+20
-28
lines changed

templates/Question11.html

Lines changed: 20 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,30 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<title>All Input Types</title>
4+
<meta charset="UTF-8">
5+
<title>All Input Types</title>
66
</head>
77
<body>
88

99
<form>
10-
11-
<input type="text" placeholder="Text"><br>
12-
<input type="password" placeholder="Password"><br>
13-
<input type="email" placeholder="Email"><br>
14-
<input type="number" placeholder="Number"><br>
15-
<input type="tel" placeholder="Phone"><br>
16-
<input type="url" placeholder="URL"><br>
17-
<input type="date"><br>
18-
<input type="color"><br>
19-
<input type="range"><br>
20-
<input type="file"><br>
21-
22-
<input type="checkbox"> Checkbox<br>
23-
24-
<input type="radio" name="r"> Radio 1
25-
<input type="radio" name="r"> Radio 2<br>
26-
27-
<select>
28-
<option>Option 1</option>
29-
<option>Option 2</option>
30-
</select><br>
31-
32-
<textarea placeholder="Your message"></textarea><br>
33-
34-
<button type="submit">Submit</button>
35-
10+
<input type="text" placeholder="Text"><br>
11+
<input type="password" placeholder="Password"><br>
12+
<input type="email" placeholder="Email"><br>
13+
<input type="number" placeholder="Number"><br>
14+
<input type="checkbox"> Checkbox<br>
15+
<input type="radio"> Radio<br>
16+
<input type="file"><br>
17+
<input type="color"><br>
18+
<input type="range"><br>
19+
<input type="date"><br>
20+
<input type="datetime-local"><br>
21+
<input type="time"><br>
22+
<input type="month"><br>
23+
<input type="week"><br>
24+
<input type="url" placeholder="URL"><br>
25+
<input type="tel" placeholder="Phone"><br>
26+
<input type="search" placeholder="Search"><br>
27+
<input type="submit" value="Submit">
3628
</form>
3729

3830
</body>

0 commit comments

Comments
 (0)