-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.html
46 lines (41 loc) · 971 Bytes
/
input.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
<!DOCTYPE html>
<html >
<head>
<title>Inputs</title>
</head>
<body>
<input type="color" />
<br>
<input type="checkbox" />
<br>
<input type="date" />
<br>
<input type="datetime" />
<br>
<input type="email" />
<br>
<input type="file" />
<br>
<input type="password" />
<br>
<input type="range" />
<br>
<input type="radio" name="edad" value="13" />13
<input type="radio" name="edad" value="17" />17
<input type="radio" name="edad" value="18" />18
<input type="radio" name="edad" value="19" />19
<br>
<textarea rows="16" cols="12"></textarea>
<br>
<select >
<optgroup>
<option >Opcion 1 Grupo 1</option>
<option>Opcion 2 Grupo 1</option>
</optgroup>
<optgroup>
<option>Opcion 1 Grupo 2</option>
<option>Opcion 2 Grupo 2</option>
</optgroup>
</select>
</body>
</html>