-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path09-Q.html
More file actions
91 lines (88 loc) · 3.2 KB
/
09-Q.html
File metadata and controls
91 lines (88 loc) · 3.2 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!-- Create an HTML page, which should contain all types of input elements -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<center>
<form style="background-color: antiquewhite;">
<h1>Input Types</h1>
<table border="3">
<tr>
<th>Inputs Name</th>
<th>Result</th>
<th>Inputs Name</th>
<th>Result</th>
<th>Inputs Name</th>
<th>Result</th>
</tr>
<tr>
<td>Button</td>
<td><input type="button" /><br /></td>
<td>Checkbox</td>
<td><input type="checkbox" /><br /></td>
<td>Color</td>
<td><input type="color" /><br /></td>
</tr>
<tr>
<td>Date</td>
<td><input type="date" /><br /></td>
<td>Date-Time</td>
<td><input type="datetime" /><br /></td>
<td>Date-Time-Local</td>
<td><input type="datetime-local" /><br /></td>
</tr>
<tr>
<td>Email</td>
<td><input type="email" /><br /></td>
<td>Hidden</td>
<td><input type="hidden" /><br /></td>
<td>Upload File</td>
<td><input type="file" /><br /></td>
</tr>
<tr>
<td>Image</td>
<td><input type="image" /><br /></td>
<td>Month</td>
<td><input type="month" /><br /></td>
<td>Number</td>
<td><input type="number" /><br /></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" /><br /></td>
<td>Radio</td>
<td><input type="radio" /><br /></td>
<td>Range</td>
<td><input type="range" /><br /></td>
</tr>
<tr>
<td>Reset</td>
<td><input type="reset" /><br /></td>
<td>Search</td>
<td><input type="search" /><br /></td>
<td>Submit</td>
<td><input type="submit" value="submit" /><br /></td>
</tr>
<tr>
<td>Tel</td>
<td><input type="tel" /><br /></td>
<td>Text</td>
<td><input type="text" /><br /></td>
<td>Time</td>
<td><input type="time" /><br /></td>
</tr>
<tr>
<td>URL</td>
<td><input type="url" /><br /></td>
<td>Week</td>
<td><input type="week" /><br /></td>
</tr>
</table>
</form>
</center>
</body>
</html>