-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtienda.html
153 lines (121 loc) · 5.67 KB
/
tienda.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
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
<!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>Ecommerce - 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+Display:wght@700&family=Raleway:wght@400;700;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">Galería</a>
<a href="contacto.html">Contacto</a>
</nav>
</div>
<main class="contenido-principal contenedor ">
<h2 class="text-center">Nuestros Productos</h2>
<div class="listado-productos">
<div class="producto">
<img src="img/producto1.jpg" alt="Imagen Producto" >
<div class="texto-producto">
<h3>Producto 1</h3>
<p>Proin condimentum sodales risus ut aliquet. Nunc eu neque quis sapien feugiat posuere sed nec mauris.</p>
<p class="precio">$1,000,000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div> <!-- Info Producto -->
</div> <!-- Producto -->
<div class="producto">
<img src="img/producto2.jpg" alt="Imagen Producto" >
<div class="texto-producto">
<h3>Producto 2</h3>
<p>Proin condimentum sodales risus ut aliquet. Nunc eu neque quis sapien feugiat posuere sed nec mauris.</p>
<p class="precio">$1,000,000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div> <!-- Info Producto -->
</div> <!-- Producto -->
<div class="producto">
<img src="img/producto3.jpg" alt="Imagen Producto" >
<div class="texto-producto">
<h3>Producto 3</h3>
<p>Proin condimentum sodales risus ut aliquet. Nunc eu neque quis sapien feugiat posuere sed nec mauris.</p>
<p class="precio">$1,000,000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div> <!-- Info Producto -->
</div> <!-- Producto -->
<div class="producto">
<img src="img/producto4.jpg" alt="Imagen Producto" >
<div class="texto-producto">
<h3>Producto 4</h3>
<p>Proin condimentum sodales risus ut aliquet. Nunc eu neque quis sapien feugiat posuere sed nec mauris.</p>
<p class="precio">$1,000,000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div> <!-- Info Producto -->
</div> <!-- Producto -->
<div class="producto">
<img src="img/producto5.jpg" alt="Imagen Producto" >
<div class="texto-producto">
<h3>Producto 5</h3>
<p>Proin condimentum sodales risus ut aliquet. Nunc eu neque quis sapien feugiat posuere sed nec mauris.</p>
<p class="precio">$1,000,000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div> <!-- Info Producto -->
</div> <!-- Producto -->
<div class="producto">
<img src="img/producto6.jpg" alt="Imagen Producto" >
<div class="texto-producto">
<h3>Producto 6</h3>
<p>Proin condimentum sodales risus ut aliquet. Nunc eu neque quis sapien feugiat posuere sed nec mauris.</p>
<p class="precio">$1,000,000.00</p>
<a class="btn" href="#">Agregar al Carrito</a>
</div> <!-- Info Producto -->
</div> <!-- Producto -->
</div> <!-- Fin de Listado de Productos -->
</main>
<footer class="site-footer">
<div class="grid-footer contenedor">
<div>
<h3>Categorías</h3>
<nav class="footer-menu">
<a href="#">Cocina</a>
<a href="#">Oficina</a>
<a href="#">Jardín</a>
<a href="#">Cochera</a>
<a href="#">Dormitorios</a>
</nav>
</div>
<div>
<h3>Sobre Nosotros</h3>
<nav class="footer-menu">
<a href="#">Nuestra Historia</a>
<a href="#">Misión, Visión y Valores</a>
<a href="#">Carreras</a>
<a href="#">Política de Privacidad</a>
<a href="#">Términos del Servicio</a>
</nav>
</div>
<div>
<h3>Soporte</h3>
<nav class="footer-menu">
<a href="#">Preguntas Frecuentes</a>
<a href="#">Ayuda en línea</a>
<a href="#">Confianza y Seguridad</a>
</nav>
</div>
</div>
<p class="copyright">Todos los derechos Reservados, TiendaMuebles</p>
</footer>
</body>
</html>