-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputs.html
55 lines (53 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>HTML inputs</title>
</head>
<body>
<h1>Inputs</h1>
<form class="" action="index.html" method="post">
<label>text</label>
<input type="text" name="" value=""><br>
<label>checkbox</label>
<input type="checkbox" name="" value=""><br>
<label>date</label>
<input type="date" name="" value=""><br>
<label>date-time local</label>
<input type="datetime-local" name="" value=""><br>
<label>time</label>
<input type="time" name="" value=""><br>
<label>color</label>
<input type="color" 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>url</label>
<input type="url" name="" value=""><br>
<label>password</label>
<input type="password" name="" value=""><br>
<label>range</label>
<input type="range" name="" value=""><br>
<label>tel</label>
<input type="tel" name="" value=""><br>
<label>search</label>
<input type="search" name="" value=""><br>
<label>month</label>
<input type="month" name="" value=""><br>
<label>week</label>
<input type="weel" name="" value=""><br>
<label>button</label>
<input type="button" name="" value=""><br>
<label>reset</label>
<input type="reset" name="" value=""><br>
<label>radio</label>
<input type="radio" name="" value=""><br>
<label>hidden</label>
<input type="hidden" name="" value=""><br>
<input type="submit" name="" value="">
</form>
</body>
</html>