-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputs.html
51 lines (48 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>HTML Input TYPES</title>
</head>
<body>
<h1>HTML Input Types</h1>
<form class="" action="index.html" method="post">
<label> Password Input Box: </label>
<input type="password" name="" value="">
<hr size="3" noshade>
<label> Submit Button: </label>
<input type="submit" name="">
<hr size="3" noshade>
<label> Date Picker: </label>
<input type="date" name="" value="">
<hr size="3" noshade>
<label> Color Picker: </label>
<input type="color" name="" value="">
<hr size="3" noshade>
<label> Check Box: </label>
<input type="checkbox" name="" value="">
<hr size="3" noshade>
<label> Email : </label>
<input type="email" name="" value="">
<hr size="3" noshade>
<label> File Upload : </label>
<input type="file" name="" value="">
<hr size="3" noshade>
<label> Radio Button : </label>
<input type="radio" name="" value="">
<hr size="3" noshade>
<label> Range Slider : </label>
<input type="range" name="" value="">
<hr size="3" noshade>
<label> Search for Text : </label>
<input type="search" name="" value="">
<hr size="3" noshade>
<label> Telephone Input Box : </label>
<input type="Telephone" name="" value="">
<hr size="3" noshade>
<label> URL Input Box : </label>
<input type="url" name="" value="">
<hr size="3" noshade>
</form>
</body>
</html>