-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputs.html
121 lines (121 loc) · 3.98 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Inputs</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3>HTML Inputs</h3>
<hr>
<form class="" action="index.html" method="post">
<table cellspacing="8">
<tr>
<td><label>Textbox</label></td>
<td> :</td>
<td><input type="text" name="" value=""></td>
</tr>
<tr>
<td><label>Url</label></td>
<td> :</td>
<td><input type="url" name="" value=""></td>
</tr>
<tr>
<td><label>Password</label></td>
<td> :</td>
<td><input type="password" name="" value=""></td>
</tr>
<tr>
<td><label>Search Box</label></td>
<td> :</td>
<td><input type="search" name="" value=""></td>
</tr>
<tr>
<td><label>Number</label></td>
<td> :</td>
<td><input type="number" name="" value=""></td>
</tr>
<tr>
<td><label>Phone Number</label></td>
<td> :</td>
<td><input type="tel" name="" value=""></td>
</tr>
<tr>
<td><label>Range</label></td>
<td> :</td>
<td><input type="range" name="" value="" min="0" max="10"></td>
</tr>
<tr>
<td><label>Button</label></td>
<td> :</td>
<td><input type="button" name="" value="I am a button!"></td>
</tr>
<tr>
<td><label>Reset Button</label></td>
<td> :</td>
<td><input type="reset" name="" value="Reset"></td>
</tr>
<tr>
<td><label>Checkbox</label></td>
<td> :</td>
<td><input type="checkbox" name="" value=""></td>
</tr>
<tr>
<td><label>Radio</label></td>
<td> :</td>
<td><input type="radio" name="" value=""></td>
</tr>
<tr>
<td><label>Colour Picker</label></td>
<td> :</td>
<td><input type="color" name="" value=""></td>
</tr>
<tr>
<td><label>Date</label></td>
<td> :</td>
<td><input type="date" name="" value=""></td>
</tr>
<tr>
<td><label>Month: </label></td>
<td> :</td>
<td><input type="month" name="" value=""></td>
</tr>
<tr>
<td><label>Datetime (Local)</label></td>
<td> :</td>
<td><input type="datetime-local" name="" value=""></td>
</tr>
<tr>
<td><label>Datetime</label></td>
<td> :</td>
<td><input type="datetime" name="" value=""></td>
</tr>
<tr>
<td><label>Week</label></td>
<td> :</td>
<td><input type="week" name="" value=""></td>
</tr>
<tr>
<td><label>Time</label></td>
<td> :</td>
<td><input type="time" name="" value=""></td>
</tr>
<tr>
<td><label>Email</label></td>
<td> :</td>
<td><input type="email" name="" value=""></td>
</tr>
<tr>
<td><label>File Picker</label></td>
<td> :</td>
<td><input type="file" name="" value=""></td>
</tr>
<tr>
<td><label>Submit</label></td></td>
<td> :</td>
<td><input type="submit" name=""></td>
</tr>
</table>
</form>
</body>
</html>