-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputs.html
96 lines (95 loc) · 2.23 KB
/
inputs.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
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
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<label>ALL THE INPUTS IN HTML</label>
<br>
<table>
<tr>
<td>Button</td>
<td><input type="button" value="Click me!"></td>
</tr>
<tr>
<td>Checkbox</td>
<td><input type="checkbox"></td>
</tr>
<tr>
<td>Color</td>
<td><input type="color"></td>
</tr>
<tr>
<td>Date</td>
<td><input type="date"></td>
</tr>
<tr>
<td>File</td>
<td><input type="file"></td>
</tr>
<tr>
<td>Email</td>
<td><input type="email"></td>
</tr>
<tr>
<td>Hidden</td>
<td><input type="hidden"></td>
</tr>
<tr>
<td>Month</td>
<td><input type="month"></td>
</tr>
<tr>
<td>Number</td>
<td><input type="number"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password"></td>
</tr>
<tr>
<td>Radio</td>
<td><input type="radio"></td>
</tr>
<tr>
<td>Range</td>
<td><input type="range"></td>
</tr>
<tr>
<td>Reset</td>
<td><input type="reset"></td>
</tr>
<tr>
<td>Search</td>
<td><input type="search"></td>
</tr>
<tr>
<td>Submit</td>
<td><input type="submit"></td>
</tr>
<tr>
<td>Tel</td>
<td><input type="tel"></td>
</tr>
<tr>
<td>Text</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Time</td>
<td><input type="time"></td>
</tr>
<tr>
<td>Url</td>
<td><input type="url"></td>
</tr>
<tr>
<td>Week</td>
<td><input type="week"></td>
</tr>
</table>
</body>
</html>