-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.16 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<label>
!Busca tu Avenger!
<input
list="superheroes"
id="superhero-input"
name="superhero"
placeholder="Escribe el nombre...">
</label>
<datalist id="superheroes">
<option value="Iron Man">
<option value="Scarlet Witch">
<option value="Spider-Man">
<option value="Black Widow">
<option value="Hulk">
<option value="Captain Marvel">
<option value="Thor">
<option value="Captain America">
</datalist>
<hr>
<label for="meeting-time">Selecciona fecha: </label>
<input
type="datetime-local" id="meeting-time"
name="meeting-time" value="2023-06-12T19:30"
min="2023-06-07T00:00" max="2023-06-14T00:00"
>
<hr>
<select name="select">
<option value="havanna">Havana</option>
<option value="cachafaz" selected>Cachafaz</option>
<option value="guaymallen">Guaymallen</option>
</select>
</body>
</html>