-
Notifications
You must be signed in to change notification settings - Fork 0
/
producto.html
88 lines (83 loc) · 2.59 KB
/
producto.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
<!DOCTYPE html>
<html lang="ES">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
type="text/css"
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=Fira+Code:wght@700&display=swap"
/>
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/products.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Alura Geek</title>
</head>
<body>
<header>
<nav>
<div class="logo-busqueda">
<div class="logo">
<img src="./assets/logo.svg" alt="logo" />
</div>
<input i type="text" placeholder="Qué deseas buscar?" />
</div>
</nav>
</header>
<section class="general-products">
<div class="products_title">
<span>Todos los productos</span>
<a href="add-products.html">
<button class="product-button">Agregar Producto</button>
</a>
</div>
<section class="products-section" data-allProducts></section>
</section>
<section class="contacto">
<div class="referencia">
<img src="./assets/logo.svg" alt="logo" />
</div>
<div class="links-utiles">
<a href="">Quienes somos</a>
<a href="">Política de Privacidad</a>
<a href="">Programa de fidelidad</a>
<a href="">Nuestras tiendas</a>
<a href="">Quiero ser franquiciado</a>
<a href="">Anuncie aquí</a>
</div>
<div class="form">
<p>Hable con nosotros</p>
<div class="label-float">
<input
type="text"
name="Nombre"
id="Nombre"
class="input-nombre"
placeholder=""
/>
<label for="Nombre" class="label-nome">Nombre</label>
</div>
<textarea
name="mensaje"
id="msg"
cols="5"
rows="5"
placeholder="Escriba su mensaje"
></textarea>
<button>Enviar Mensaje</button>
</div>
</section>
<script type="module" src="./controllers/lista-productos.js"></script>
</body>
</html>