-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
234 lines (221 loc) · 8.22 KB
/
blog.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html>
<html lang="en">
<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 - Blog</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=Playfair+Display:wght@700&family=Raleway:wght@400;700;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/app.css" />
<script defer src="./js/bootstrap.bundle.min.js"></script>
</head>
<body>
<header class="py-4">
<h1 class="text-center">
Tienda <span class="text-primary">Muebles</span>
</h1>
</header>
<div class="border-top pt-3">
<div class="navbar navbar-expand-md navbar-light px-3">
<a
href="#"
class="nombre-sitio d-md-none navbar-brand fs-2 fw-bold text-uppercase"
>
Tienda muebles
</a>
<button
class="navbar-toggler"
data-bs-target="#navbar"
data-bs-toggle="collapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div id="navbar" class="collapse navbar-collapse">
<nav
class="navbar-nav container-xl text-center d-flex flex-md-row justify-content-md-around"
>
<a class="text-dark text-decoration-none" href="./index.html"
>Inicio</a
>
<a class="text-dark text-decoration-none" href="./nosotros.html"
>Nosotros</a
>
<a class="text-dark text-decoration-none" href="./tienda.html"
>Tienda</a
>
<a class="text-dark text-decoration-none" href="./blog.html"
>Blog</a
>
<a class="text-dark text-decoration-none" href="./galeria.html"
>Galeria</a
>
<a class="text-dark text-decoration-none" href="./contacto.html"
>Contacto</a
>
</nav>
</div>
</div>
</div>
<section class="container py-5">
<h2 class="text-center my-5">Blog</h2>
<div class="row container-xl gx-5">
<main class="col-md-8">
<article class="border-bottom pb-5">
<h2 class="my-5">Guía de colores</h2>
<img
src="./img/nosotros.jpg"
alt="Imagen del articulo"
class="img-fluid"
/>
<div
class="d-flex flex-column flex-lg-row justify-content-lg-between mt-3"
>
<p class="fw-bold m-0">
Fecha:
<span class="text-primary">22 de octubre de 2022</span>
</p>
<p class="fw-bold">
Escrito por: <span class="text-primary">TiendaMuebles</span>
</p>
</div>
<p class="mt-3">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam
molestias dolores dolor sit repellendus voluptatum deserunt
necessitatibus modi, ipsa laudantium error maxime assumenda
recusandae possimus labore repellat cum obcaecati dicta?
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore
similique sequi dicta, voluptates odio tenetur adipisci reiciendis
nemo esse fuga sint expedita laudantium aspernatur, quae hic
repellendus perferendis inventore repudiandae?
</p>
<a
href="entrada.html"
class="btn btn-success py-3 px-5 fs-2 d-block d-md-inline-block"
>Seguir leyendo</a
>
</article>
<article class="border-bottom pb-5">
<h2 class="my-5">Guía de colores</h2>
<img
src="./img/nosotros.jpg"
alt="Imagen del articulo"
class="img-fluid"
/>
<div
class="d-flex flex-column flex-lg-row justify-content-lg-between mt-3"
>
<p class="fw-bold m-0">
Fecha:
<span class="text-primary">22 de octubre de 2022</span>
</p>
<p class="fw-bold">
Escrito por: <span class="text-primary">TiendaMuebles</span>
</p>
</div>
<p class="mt-3">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam
molestias dolores dolor sit repellendus voluptatum deserunt
necessitatibus modi, ipsa laudantium error maxime assumenda
recusandae possimus labore repellat cum obcaecati dicta?
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore
similique sequi dicta, voluptates odio tenetur adipisci reiciendis
nemo esse fuga sint expedita laudantium aspernatur, quae hic
repellendus perferendis inventore repudiandae?
</p>
<a
href="entrada.html"
class="btn btn-success py-3 px-5 fs-2 d-block d-md-inline-block"
>Seguir leyendo</a
>
</article>
</main>
<aside class="col-md-4 sidebar position-sticky top-0">
<h3 class="my-5">Otras Entradas del Blog</h3>
<ul>
<li>
<a class="text-dark text-decoration-none" href="#"
>Guía de Colores</a
>
</li>
<li>
<a class="text-dark text-decoration-none" href="#"
>Nuevos Modelos</a
>
</li>
<li>
<a class="text-dark text-decoration-none" href="#"
>Guía para diseños de interiores</a
>
</li>
<li>
<a class="text-dark text-decoration-none" href="#"
>Guía para diseños de exteriores</a
>
</li>
</ul>
</aside>
</div>
</section>
<!-- Footer -->
<footer class="container-xl mt-5 pt-5 border-top">
<div class="row">
<div class="col-md-4 text-center">
<h3 class="mb-5">Categorias</h3>
<nav class="d-flex flex-column">
<a class="text-dark text-decoration-none" href="#">Cocina</a>
<a class="text-dark text-decoration-none" href="#">Oficina</a>
<a class="text-dark text-decoration-none" href="#">Jardin</a>
<a class="text-dark text-decoration-none" href="#">cochera</a>
<a class="text-dark text-decoration-none" href="#">dormitorios</a>
</nav>
</div>
<div class="col-md-4 text-center">
<h3 class="mb-5">Sobre nosotros</h3>
<nav class="d-flex flex-column">
<a class="text-dark text-decoration-none" href="#"
>Nuestra historia</a
>
<a class="text-dark text-decoration-none" href="#"
>mision, vision y valores</a
>
<a class="text-dark text-decoration-none" href="#">Carreras</a>
<a class="text-dark text-decoration-none" href="#"
>Políticas de privacidad</a
>
<a class="text-dark text-decoration-none" href="#"
>Terminos de servicio</a
>
</nav>
</div>
<div class="col-md-4 text-center">
<h3 class="mb-5">Soporte</h3>
<nav class="d-flex flex-column">
<a class="text-dark text-decoration-none" href="#"
>Preguntas frecuentes</a
>
<a class="text-dark text-decoration-none" href="#"
>Ayuda en línea</a
>
<a class="text-dark text-decoration-none" href="#"
>Confianza y seguridad</a
>
</nav>
</div>
</div>
<p class="text-center mt-4 py-2">
Todos los derechos reservados,
<span class="fw-bold d-block d-md-inline">TiendaMuebles ©</span>
</p>
</footer>
</body>
</html>