-
Notifications
You must be signed in to change notification settings - Fork 0
/
todosProductos.html
95 lines (83 loc) · 3.65 KB
/
todosProductos.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Productos</title>
<link rel="stylesheet" href="css/reset.css">
<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@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/reset.css">
<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@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/css-main.css">
</head>
<body>
<!-- Header -->
<header class="head" style="margin-bottom: 1rem;">
<div class="head__box">
<a href="index.html" class="head__box">
<div class="head__icon"></div>
<div class="head__titleIcon"></div>
</a>
<input type="text" class="head__input" placeholder="¿Qué desea buscar?">
<span class="head__searchIcon--gray"></span>
</div>
<button class="head__searchIcon--black"></button>
</header>
<main>
<!-- Productos -->
<section class="products">
<div class="product__container">
<div class="products__titleBox">
<h3 class="products__title">Todos los productos</h3>
<a href="agregarProducto.html" class="products__btnAdd">Agregar producto</a>
</div>
<div class="products__box" data-allProducts>
<!-- js code -->
</div>
</div>
</section>
<!-- Formulario -->
<section class="form">
<div class="form__LinksLogoBox">
<div class="form__logoBox">
<div class="form__logo"></div>
<div class="form__logoText"></div>
</div>
<div class="form__linksBox">
<a href="#" class="form_links">Quienes somos</a>
<a href="#" class="form_links">Política de privacidad</a>
<a href="#" class="form_links">Programa de fidelidad</a>
<a href="#" class="form_links">Nuestras tiendas</a>
<a href="#" class="form_links">Quiero ser parte de AluraGeek</a>
<a href="#" class="form_links">Denuncie aquí</a>
</div>
</div>
<form>
<fieldset class="form__inputsBox">
<legend class="form__textForm">Hable con nosotros</legend>
<div class="form__inputBox">
<input type="text" class="form__input" required>
<span class="form__span">Nombre</span>
</div>
<div class="form__inputBox">
<!-- <input type="text" class="form__input" required> -->
<textarea class="form__textArea" required></textarea>
<span class="form__span">Mensaje</span>
</div>
</fieldset>
<button class="form__btn">Enviar mensaje</button>
</form>
</section>
</main>
<!-- footer -->
<footer class="footer">
<p>Desarrollado por Estefania Garcia</p>
<p>2023</p>
</footer>
<script type="module" src="/controllers/muestraProducto-controller.js"></script>
</body>
</html>