-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputs.html
59 lines (59 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Inputs</title>
</head>
<body>
<form action="">
<label for="">text:</label>
<input type="text"><br>
<label for="">button:</label>
<input type="button" value="Click Me"><br>
<label for="">Checkbox:</label>
<input type="checkbox" name="" id=""><br>
<label for="">color:</label>
<input type="color" name="" id=""><br>
<label for="">date:</label>
<input type="date"><br>
<label for="">datetime:</label>
<input type="datetime" name="" id=""><br>
<label for="">datetime-local:</label>
<input type="datetime-local"><br>
<label for="">email:</label>
<input type="email"><br>
<label for="">file:</label>
<input type="file"><br>
<label for="">hidden:</label>
<input type="hidden"><br>
<label for="">image:</label>
<input type="image"><br>
<label for="">month:</label>
<input type="month"><br>
<label for="">number:</label>
<input type="number"><br>
<label for="">password:</label>
<input type="password"><br>
<label for="">radio:</label>
<input type="radio"><br>
<label for="">range:</label>
<input type="range"><br>
<label for="">reset:</label>
<input type="reset"><br>
<label for="">search:</label>
<input type="search"><br>
<label for="">submit:</label>
<input type="submit"><br>
<label for="">tel:</label>
<input type="tel"><br>
<label for="">time:</label>
<input type="time" name="" id=""><br>
<label for="">url:</label>
<input type="url"><br>
<label for="">week:</label>
<input type="week"><br>
</form>
</body>
</html>