-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.07 KB
/
index.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
<!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>Otros controles de formularios</title>
</head>
<body>
<main>
<h1>Otros controles para formularios</h1>
<form>
<h2>Seleccion de archivos</h2>
<label for="photo">Elige la foto de tu perfil</label>
<input id="photo" type="file" name="photo">
<h2>Seleccion de archivos solo fotos</h2>
<label for="photo2">Selecciona una foto</label>
<input id="photo2" type="file" accept="image/jpeg, image/png" name="photo2">
<h2>Fecha</h2>
<label for="nacimiento">Fecha de nacimiento</label>
<input id="nacimiento" type="date" name="fecha">
<br>
<label for="hora">Seleccione la hora</label>
<input id="hora" type="time" name="hora">
<br>
<label for="color">Elige tu color favorito</label>
<input id="color" type="color" name="color">
<br>
<input type="submit">
</form>
</main>
</body>
</html>