-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (34 loc) · 1.38 KB
/
index.html
File metadata and controls
46 lines (34 loc) · 1.38 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Star Wars API</title>
<link rel="stylesheet" href="./src/css/styles.css" />
<script></script>
</head>
<body>
<header>THE STAR WARS API</header>
<div class="controls">
<!-------------------- SELECCIONAR CATEGORÍA ----------------------------------->
<select id="categoria-select">
<option value="personajes">Personajes</option>
<option value="planetas">Planetas</option>
<option value="naves">Naves</option>
</select>
<input type="text" id="input-buscar" placeholder="Buscar en la API" />
<button class="button-yellow" id="botonBuscar">🔍 Buscar</button>
<!------------------ Queda pendiente ------------------------------------------>
<!-- <button class="button-yellow">📋 Listar Todo</button>
<button class="button-yellow">⭐ Favoritos</button>
-->
</div>
<main>
<!------------------ MOSTRAR DATOS RECOGIDOS ------------------------------------>
<section id="personajes" class="cards-container"></section>
<section id="planetas" class="cards-container"></section>
<section id="naves" class="cards-container"></section>
</main>
<script src="./src/js/script.js"></script>
</body>
</html>