-
Notifications
You must be signed in to change notification settings - Fork 0
/
productos.html
76 lines (74 loc) · 2.71 KB
/
productos.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/main.css">
<title>Productos</title>
</head>
<body>
<header>
<div class="header-container">
<div class="logo-input">
<a href="./index.html"><img src="./img/vector-logo.svg" alt="Logo Alura Geek" srcset=""></a>
<input type="text" class="barra-busqueda" placeholder="¿Qué deseas buscar?">
</div>
<img class="icono-buscar" src="./img/buscar-img.svg" alt="buscar">
</div>
</header>
<section class="section-productos">
<div class="titulo-productos">
<h1>Todos los productos</h1>
<a href="./agregar-producto.html"><button class="blue-button" type="button">Agregar producto</button></a>
</div>
<!-- Desde el API -->
<div id="starwars" class="productos-productos"></div>
<div id="consolas" class="productos-productos"></div>
<div id="diversos" class="productos-productos"></div>
</section>
<section class="section-footer">
<footer>
<div class="nav-container">
<img class="logo-alura" src="./img/vector-logo.svg" alt="Logo Alura Geek">
<div class="footer-nav">
<a href="#">
<p>Quienes Somos</p>
</a>
<a href="#">
<p>Política de Privacidad</p>
</a>
<a href="#">
<p>Programa de fidelidad</p>
</a>
<a href="#">
<p>Nuestras Tiendas</p>
</a>
<a href="#">
<p>Quiero ser franquiciado</p>
</a>
<a href="#">
<p>Anúncie aquí</p>
</a>
</div>
</div>
<div class="form-container">
<form>
<h2 class="form-title">Hable con nosotros</h2>
<input id="nombre" type="text" placeholder="Nombre">
<textarea name="mensaje" id="mensaje" cols="30" rows="5" placeholder="Escribe tu mensaje"></textarea>
<button class="blue-button" type="button">Enviar Mensaje</button>
</form>
</div>
</footer>
<div class="rodapie">Desarrollado por Cristian Ledezma 2022</div>
</section>
<script type="module" src="./js/main.js"></script>
</body>
</html>