-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductos-categoria.html
95 lines (83 loc) · 4.86 KB
/
productos-categoria.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="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="assets/img/all/logo-alurageek.png"/>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/root.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/body.css">
<link rel="stylesheet" href="assets/css/all/cabecera/cabecera.css">
<link rel="stylesheet" href="assets/css/all/cabecera/cabecera-logo.css">
<link rel="stylesheet" href="assets/css/all/cabecera/cabecera-icono.css">
<link rel="stylesheet" href="assets/css/all/cabecera/cabecera-texto.css">
<link rel="stylesheet" href="assets/css/all/cabecera/cabecera-buscador.css">
<link rel="stylesheet" href="assets/css/all/cabecera/cabecera-buscador-input.css">
<link rel="stylesheet" href="assets/css/all/cabecera/cabecera-buscador-icono.css">
<link rel="stylesheet" href="assets/css/all/cabecera/cabecera-login.css">
<link rel="stylesheet" href="assets/css/productos/addproducto/addproducto.css">
<link rel="stylesheet" href="assets/css/productos/addproducto/addproducto-cabecera.css">
<link rel="stylesheet" href="assets/css/productos/addproducto/addproducto-container.css">
<link rel="stylesheet" href="assets/css/productos/addproducto/addproducto-articulo.css">
<link rel="stylesheet" href="assets/css/all/rodapie/rodapie.css">
<link rel="stylesheet" href="assets/css/all/rodapie/rodapie-logo.css">
<link rel="stylesheet" href="assets/css/all/rodapie/rodapie-enlaces.css">
<link rel="stylesheet" href="assets/css/all/rodapie/rodapie-formulario.css">
<link rel="stylesheet" href="assets/css/all/footer/footer.css">
<title>::AluraGeek:: Add productos</title>
</head>
<body>
<header id="cabecera">
<a href="index.html"><div class="cabecera__logo">
<img src="assets/img/all/logo-alurageek.png" alt="Ícono AluraGeek" class="cabecera__icono">
<img src="assets/img/all/texto-alurageek.png" alt="Logo AluraGeek" class="cabecera__texto">
</div></a>
</header>
<section id="addproducto">
<div class="addproducto__cabecera">
<h2 class="addproducto__titulo">Todos los productos</h2>
</div>
<div class="addproducto__container">
</div>
</section>
<section id="rodapie">
<div class="rodapie__logo">
<img src="assets/img/all/logo-alurageek.png" alt="Ícono" class="rodapie__icono">
<img src="assets/img/all/texto-alurageek.png" alt="Logo Alura Geek" class="rodapie__texto">
</div>
<div class="rodapie__enlaces">
<a href="encontruccion.html" class="rodapie__enlace">Quiénes somos</a>
<a href="encontruccion.html" class="rodapie__enlace">Política de privacidad</a>
<a href="encontruccion.html" class="rodapie__enlace">Programa de fidelidad</a>
<a href="encontruccion.html" class="rodapie__enlace">Nuestras Tiendas</a>
<a href="encontruccion.html" class="rodapie__enlace">Quiero ser franciciado</a>
<a href="encontruccion.html" class="rodapie__enlace">Anuncie aquí</a>
</div>
<form action="" class="rodapie__formulario" method="post">
<legend class="rodapie__formulario-titulo">Hable con nosotros</legend>
<input type="text" class="rodapie__formulario-nombre" placeholder="Nombre" required pattern="[a-zA-Z][a-zA-Z0-9]{1,20}">
<p class="rodapie__error rodapie__error--nombre"></p>
<textarea type="text" name="" id="" cols="30" rows="10" class="rodapie__formulario-mensaje" placeholder="Escribe tu mensaje" required pattern="[a-zA-Z][a-zA-Z0-9]{9,500}"></textarea>
<p class="rodapie__error rodapie__error--mensaje"></p>
<button class="rodapie__formulario-btn">Enviar mensaje</button>
</form>
</section>
<footer id="footer">
<p class="footer__texto">© Desarrolado por Gian Barrantes</p>
<p class="footer__texto">2023</p>
</footer>
<template class="template-categoria">
<div class="addproducto__articulo">
<img src="" class="addproducto__articulo-img">
<h6 class="addproducto__texto-nombre"></h6>
<h6 class="addproducto__texto-precio"></h6>
<h6 class="addproducto__texto-codigo"></h6>
<a href="" class="addproducto__texto-enlace">Ver producto</a>
</div>
</template>
<script src="assets/modulos/validacion-rodapie.js"></script>
<script src="assets/modulos/productos-categoria.js" type="module"></script>
</body>
</html>