-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
55 lines (44 loc) · 1.76 KB
/
index2.html
File metadata and controls
55 lines (44 loc) · 1.76 KB
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">
<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>Document</title>
</head>
<body>
<h1>Tarea HTML_Formularios de Yibrika Carreño</h1>
<form>
<input type="date" name="fecha" min="2018-03-25" max="2022-12-31" step="2" />
<input type="radio" name="procesador" value="procesadoramd"> AMD
<input type="radio" name="procesador" value="procesadorintel_i5"> Intel i5
<input type="radio" name="procesador" value="procesadorintel_i7"> v
<input type="text" name="nombre" placeholder="Nombre"/>
<input type="text" name="apellidos" placeholder="Apellidos"/>
<input type="text" name="direccion" placeholder="Dirección"/>
<p>
Puedes elegir el color que más te guste
<input type="color" name="color"/>
</p>
<textarea name="texto" cols="59" rows="6" placeholder=" Utilice este cuadro para escribir"></textarea>
<input type="date" name="fecha" min="2018-03-25" max="2022-12-31" step="2" />
<select name="idioma" multiple>
<optgroup label="idioma">
<option value="ingles">ingles</option>
</optgroup>
<optgroup label="idioma">
<option value="aleman"> aleman </option>
</optgroup>
<optgroup label="idioma">
<option value="frances"> frances </option>
<input type="time" name="hora" min="00:00" max="25:00" step="3600" />
<input type="file" name="archivo"/>
<p>
<input type="radio" name="sexo" value="sexohombre" /> Hombre
<input type="radio" name="sexo" value="sexomujer" /> Mujer
</p>
</optgroup>
</select>
</form>
</body>
</html>