-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtienda.html
More file actions
169 lines (134 loc) · 6.33 KB
/
Copy pathtienda.html
File metadata and controls
169 lines (134 loc) · 6.33 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tienda</title>
<link rel="stylesheet" href="css/normalize.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=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<header>
<h1 class="nombre-sitio">Tienda <span> Muebles</span></h1>
</header>
<div class="contenedor-navegacion">
<nav class="nav-principal contenedor">
<a href="index.html">Inicio</a>
<a href="nosotros.html">Nosotros</a>
<a href="tienda.html">Tienda</a>
<a href="blog.html">Blog</a>
<a href="galeria.html">Galeria</a>
<a href="contacto.html">Contacto</a>
</nav>
</div>
<main class="contenido-principal contenedor">
<h2 class="text-center">Nuestos Productos</h2>
<div class="listado-productos">
<div class="producto">
<img src="img/producto1.jpg" alt="Imagen producto1">
<div class="texto-producto">
<h3>Producto 1</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Necessitatibus, dicta voluptatum numquam
nam
ullam consequuntur possimus eveniet.</p>
<p class="precio">$1000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div><!-- Info Producto -->
</div><!-- Productos -->
<div class="producto">
<img src="img/producto2.jpg" alt="Imagen producto2">
<div class="texto-producto">
<h3>Producto 2</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Necessitatibus, dicta voluptatum numquam
nam
ullam consequuntur possimus eveniet.</p>
<p class="precio">$1000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div><!-- Info Producto -->
</div><!-- Productos -->
<div class="producto">
<img src="img/producto3.jpg" alt="Imagen producto3">
<div class="texto-producto">
<h3>Producto 3</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Necessitatibus, dicta voluptatum numquam
nam
ullam consequuntur possimus eveniet.</p>
<p class="precio">$1000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div><!-- Info Producto -->
</div><!-- Productos -->
<div class="producto">
<img src="img/producto4.jpg" alt="Imagen producto4">
<div class="texto-producto">
<h3>Producto 4</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Necessitatibus, dicta voluptatum numquam
nam
ullam consequuntur possimus eveniet.</p>
<p class="precio">$1000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div><!-- Info Producto -->
</div><!-- Productos -->
<div class="producto">
<img src="img/producto5.jpg" alt="Imagen producto5">
<div class="texto-producto">
<h3>Producto 5</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Necessitatibus, dicta voluptatum numquam
nam
ullam consequuntur possimus eveniet.</p>
<p class="precio">$1000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div><!-- Info Producto -->
</div><!-- Productos -->
<div class="producto">
<img src="img/producto6.jpg" alt="Imagen producto6">
<div class="texto-producto">
<h3>Producto 6</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Necessitatibus, dicta voluptatum numquam
nam
ullam consequuntur possimus eveniet.</p>
<p class="precio">$1000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div><!-- Info Producto -->
</div><!-- Productos -->
</div><!-- Fin del listado de Productos -->
</main>
<footer class="site-footer">
<div class="grid-footer contenedor">
<div class="footer-menu">
<h3>Categoria</h3>
<nav class="navegacion">
<a href="#">Cocina</a>
<a href="#">Oficina</a>
<a href="#">Jardin</a>
<a href="#">Cochera</a>
<a href="#">Dormitorios</a>
</nav>
</div>
<div class="footer-menu">
<h3>Sobre Nosotros</h3>
<nav class="navegacion">
<a href="#">Nuestra Historia</a>
<a href="#">Mision, Vision y Valores</a>
<a href="#">Carreras</a>
<a href="#">Política de Privacidad</a>
<a href="#">Terminos del Servicio</a>
</nav>
</div>
<div class="footer-menu">
<h3>Soporte</h3>
<nav class="navegacion">
<a href="#">Preguntas Frecuentes</a>
<a href="#">Ayuda en Línea</a>
<a href="#">Confianza y Seguridad</a>
</nav>
</div>
</div>
<p class="footer">Todos los derechos Reservados, Tienda Muebles</p>
</footer>
</body>
</html>