-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
103 lines (102 loc) · 2.54 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bookmarklets</title>
</head>
<body>
<h1>Bookmarklets Test Page</h1>
<section>
<p>All the possible types of input fields that can be placed in a form</p>
</section>
<div>
<span>hidden</span><input type="hidden" />
</div>
<div>
<span>text</span><input type="text" />
</div>
<div>
<span>search</span><input type="search" />
</div>
<div>
<span>tel</span><input type="tel" />
</div>
<div>
<span>url</span><input type="url" />
</div>
<div>
<span>email</span><input type="email" />
</div>
<div>
<span>password</span><input type="password" />
</div>
<div>
<span>datetime</span><input type="datetime" />
</div>
<div>
<span>date</span><input type="date" />
</div>
<div>
<span>month</span><input type="month" />
</div>
<div>
<span>week</span><input type="week" />
</div>
<div>
<span>time</span><input type="time" />
</div>
<div>
<span>datetime</span><input type="datetime-local" />
</div>
<div>
<span>number</span><input type="number" />
</div>
<div>
<span>range</span><input type="range" />
</div>
<div>
<span>file</span><input type="file" />
</div>
<div>
<span>radio</span>
<input type="radio" name="radioButton" />
<input type="radio" name="radioButton"/>
</div>
<div>
<span>dropdown</span>
<select name="location" id="location">
<option>Select location</option>
<option value=""></option>
<option value="nyork">New York</option>
<option value="vancouver">Vancouver</option>
<option value="atlantis">Atlantis</option>
<option value="alpha">Alpha Centauri</option>
</select>
</div>
<div>
TextArea
<textarea></textarea>
</div>
<!--<div>
<span>color</span><input type="color" />
</div>
<div>
<span>checkbox</span><input type="checkbox" />
</div>
<div>
<span>file</span><input type="file" />
</div> -->
<!-- <div>
<span>submit</span><input type="submit" />
</div> -->
<!-- <div>
<span>image</span><input type="image" />
</div> -->
<!-- <div>
<span>reset</span><input type="reset" />
</div> -->
<!-- <div>
<span>button</span><input type="button" value="button"/>
</div> -->
</body>
</html>