-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputs.html
81 lines (75 loc) · 2.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Alllll the inputs</title>
</head>
<form class="" action="index.html" method="post">
<label>label</label>
<br>
<label>button</label>
<input type="button" name="" value="">
<br>
<label>checkbox</label>
<input type="checkbox" name="" value="">
<br>
<label>color</label>
<input type="color" name="" value="">
<br>
<label>date</label>
<input type="date" name="" value="">
<br>
<label>datetime-local</label>
<input type="datetime-local" name="" value="">
<br>
<label>email</label>
<input type="email" name="" value="">
<br>
<label>file</label>
<input type="file" name="" value="">
<br>
<label>image</label>
<input type="image" name="" value="">
<br>
<label>month</label>
<input type="month" name="" value="">
<br>
<label>number</label>
<input type="number" name="" value="">
<br>
<label>password</label>
<input type="password" name="" value="">
<br>
<label>radio</label>
<input type="radio" name="" value="">
<br>
<label>range</label>
<input type="range" name="" value="">
<br>
<label>reset</label>
<input type="reset" name="" value="">
<br>
<label>search</label>
<input type="search" name="" value="">
<br>
<label>submit</label>
<input type="submit" name="" value="">
<br>
<label>tel</label>
<input type="tel" name="" value="">
<br>
<label>text</label>
<input type="text" name="" value="">
<br>
<label>time</label>
<input type="time" name="" value="">
<br>
<label>url</label>
<input type="url" name="" value="">
<br>
<label>week</label>
<input type="week" name="" value="">
<br>
</form>
</body>
</html>