-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (37 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Buscador Imágenes Pixabay</title>
<link rel="stylesheet" href="css/tailwind.min.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<h1 class="text-center text-3xl text-white my-10 font-bold uppercase">Buscador de Imágenes Pixabay</h1>
<div class="buscador max-w-lg mx-auto ">
<form id="formulario" class="">
<div>
<label
class="block text-white font-bold uppercase"
>Término Búsqueda</label>
<input
type="text"
class="mt-3 rounded w-full p-2 "
placeholder="Término de búsqueda. Ejemplo: Café o Futbol"
id="termino"
/>
<input
type="submit"
value="Buscar Imágenes"
class="mt-5 w-full py-2 bg-yellow-400 cursor-pointer font-bold uppercase hover:bg-yellow-500 rounded"
>
</div>
</form>
</div>
<div id="resultado" class="container mx-auto mt-10 flex flex-wrap"></div>
<div id="paginacion" class="container mx-auto mb-10 text-center flex flex-wrap mx-auto justify-center">
</div>
<script src="js/app.js"></script>
</body>
</html>