-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (106 loc) · 5.6 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="es">
<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">
<title>PetRuchis</title>
<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=Play&family=Raleway:ital@1&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./reset.css">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./css/contenedor-header.css">
<link rel="stylesheet" href="./css/logo-busqueda/logo-img-input.css">
<link rel="stylesheet" href="./css/logo-busqueda/input__logo.css">
<link rel="stylesheet" href="./css/banner.css">
<link rel="stylesheet" href="./css/banner/banner-contenedor.css">
<link rel="stylesheet" href="./css/banner/banner-contenido.css">
<link rel="stylesheet" href="./css/articulos.css">
<link rel="stylesheet" href="./css/articulos/producto-contenido.css">
<link rel="stylesheet" href="./css/info-contacto.css">
<link rel="stylesheet" href="./css/contacto/info.css">
<link rel="stylesheet" href="./css/contacto/contacto.css">
<link rel="stylesheet" href="./css/footer.css">
</head>
<body>
<header>
<section class="logo__contenedor">
<img src="./img/logo.png" alt="logo de pagina" class="logo">
<div class="busqueda">
<input class="busqueda__input" type="search" placeholder="Buscar Porducto">
</div>
<div class="boton__login">
<a href="./screens/login.html"><input class="login" type="submit" value="Login"></a>
</div>
</section>
<section class="banner">
<div class="banner__contenedor">
<img src="./img/banner.jpg" alt="banner" class="banner__img">
<div class="banner__contenido">
<h2 class="titulo__banner">Promociones de Marzo</h2>
<p class="subtitulo__banner">Productos hasta con el 50% de descuento</p>
<a class="producto__banner" href="./screens/productos.html"><p>Alimentos</p> </a>
</div>
</div>
</section>
</header>
<!--Secciones de articulos y precios-->
<main>
<section class="articulos">
<span class="top__articulos">
<h2 class="titulo__productos">Accesorios</h2>
<a href="./screens/productos.html" class="vertodo">Ver todo ➜</a>
</span>
<div class="accesorios__galeria" data-accesorios>
</div>
<span class="top__articulos">
<h2 class="titulo__productos">Alimentos</h2>
<a href="./screens/productos.html" class="vertodo">Ver todo ➜</a>
</span>
<div class="accesorios__galeria" data-alimentos>
</div>
<span class="top__articulos">
<h3 class="titulo__productos">Otros</h3>
<a href="./screens/productos.html" class="vertodo">Ver todo ➜</a>
</span>
<div class="accesorios__galeria" data-otros>
</div>
</section>
<section class="info__contacto">
<div class="logo__contacto">
<img class="logo" src="./img/logo.png" alt="logo petruchis">
<div class="info">
<ul>
<li class="info__lista"><a href="#" class="link__info">Quienes somos</a></li>
<li class="info__lista"><a href="#" class="link__info">Politica de Privacidad</a></li>
<li class="info__lista"><a href="#" class="link__info">Programa de Fidelidad</a></li>
<li class="info__lista"><a href="#" class="link__info">Nuestras Tiendas</a></li>
<li class="info__lista"><a href="#" class="link__info">Quiero ser Distribuidor</a></li>
<li class="info__lista"><a href="#" class="link__info">Anunciate Aquí</a></li>
</ul>
</div>
</div>
<div class="contacto">
<h3 class="hable">Hable con Nosotros</h3>
<div class="div__input__nombre">
<input class="input__nombre" type="text" placeholder="Nombre">
</div>
<div class="div__textarea__mensaje">
<textarea class="textarea__mensaje" name="Mensaje" id="msj__contacto" cols="30" rows="10" placeholder="Mensaje"></textarea>
</div>
<button class="info__enviar">Enviar mensaje</button>
</div>
</section>
</main>
<footer>
<section class="footer">
<div class="desarrollado">
<p class="texto__footer">Desarrolado por Edgar Gonzalez</p>
<p class="texto__footer">2023</p>
</div>
</section>
</footer>
<script type="module" src="./controllers/nuevo-productoIndex-controller.js"></script>
</body>
</html>