-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
294 lines (278 loc) · 9.77 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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Market | Inicio</title>
<!-- Reset -->
<link rel="stylesheet" href="./assets/vendor/normalize.css" />
<!-- Bootstrap -->
<link rel="stylesheet" href="./assets/vendor/bootstrap/bootstrap.min.css" />
<!-- FontAwesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<!-- Google fonts -->
<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=Forum&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<!-- OWL Carousel -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css"
/>
<link rel="stylesheet" href="./static/styles/index.css" />
<link
rel="shortcut icon"
href="./assets/images/logo_dm.png"
type="image/x-icon"
/>
</head>
<body>
<nav>
<div>
<a href="./index.html"
><img src="./assets/images/logo_dm.png" alt="Digital Market"
/></a>
</div>
<div class="categoriasNav">
<ul>
<li><a href="./categoria.html">Celulares</a></li>
<li><a href="./categoria.html">Accesorios</a></li>
<li><a href="./categoria.html">Electrodomésticos</a></li>
<li><a href="./categoria.html">Computación</a></li>
<li><a href="./categoria.html">Tabletas</a></li>
<li><a href="./categoria.html">Gaming</a></li>
<li><a href="./categoria.html">Audio</a></li>
<li><a href="./categoria.html">Todas</a></li>
</ul>
</div>
<div>
<ul>
<li id="listBusquedaNav">
<form method="POST">
<button type="submit">
<i class="fas fa-arrow-alt-circle-right"></i>
</button>
<input
type="text"
name="busquedaNav"
id="busquedaNav"
placeholder="Buscar..."
maxlength="20"
minlength="3"
/>
<label for="busquedaNav"><i class="fas fa-search"></i></label>
</form>
</li>
<li><i class="fas fa-shopping-cart"></i></li>
<!-- TODO:
! Al apretar en carrito:
* mostrar side panel con los items que agrego al carrito
-->
<li><i class="fas fa-user"></i></li>
<!-- TODO:
! Al apretar en usuario:
* redireccionar a la pagina de administrador
-->
</ul>
</div>
</nav>
<main>
<img
src="./assets/images/banner_principal.png"
alt="Tecnología para tu vida"
/>
<section class="carousel">
<h1>Productos destacados</h1>
<div class="owl-carousel">
<div class="carousel_card">
<img src="./assets/images/a02.png" alt="Samsung Galaxy A02" />
<h5>Galaxy A02</h5>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ullam
soluta doloribus asperiores maxime dicta ea.
</p>
<h4>$399.999</h4>
<button type="button" class="boton_comprar">Comprar</button>
</div>
<div class="carousel_card">
<img src="./assets/images/a52.png" alt="Samsung Galaxy A52" />
<h5>Galaxy A24</h5>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ullam
soluta doloribus asperiores maxime dicta ea.
</p>
<h4>$399.999</h4>
<button type="button" class="boton_comprar">Comprar</button>
</div>
<div class="carousel_card">
<img src="./assets/images/S22.png" alt="Samsung Galaxy S22" />
<h5>Galaxy S22</h5>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ullam
soluta doloribus asperiores maxime dicta ea.
</p>
<h4>$399.999</h4>
<button type="button" class="boton_comprar">Comprar</button>
</div>
</div>
</section>
<section class="promociones">
<img
src="./assets/images/banner_1.png"
alt="3 cuotas sin interes en smartphones"
/>
<img
src="./assets/images/banner_2.png"
alt="10% de descuento en efectivo, debito o transferencia"
/>
<hr />
</section>
<section class="carousel">
<h2>Ofertas premium</h2>
<div class="owl-carousel owl-theme">
<div class="carousel_card">
<img src="./assets/images/a02.png" alt="Samsung Galaxy A02" />
<h5>Galaxy A02</h5>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ullam
soluta doloribus asperiores maxime dicta ea.
</p>
<h4>$399.999</h4>
<button type="button" class="boton_comprar">Comprar</button>
</div>
<div class="carousel_card">
<img src="./assets/images/a52.png" alt="Samsung Galaxy A52" />
<h5>Galaxy A24</h5>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ullam
soluta doloribus asperiores maxime dicta ea.
</p>
<h4>$399.999</h4>
<button type="button" class="boton_comprar">Comprar</button>
</div>
<div class="carousel_card">
<img src="./assets/images/S22.png" alt="Samsung Galaxy S22" />
<h5>Galaxy S22</h5>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ullam
soluta doloribus asperiores maxime dicta ea.
</p>
<h4>$399.999</h4>
<button type="button" class="boton_comprar">Comprar</button>
</div>
</div>
</section>
<section class="video_promocional">
<iframe
src="https://www.youtube.com/embed/ZUuAjEEJoWM?si=4CL-9wmZfzRK9e-K"
title="Video promocional de youtube"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
</section>
</main>
<footer>
<section class="footer_cabecera">
<div>
<a href="./index.html"
><img src="./assets/images/logo_dm.png" alt="Logo Digital Market"
/></a>
</div>
<div class="footer_social">
<ul>
<li>
<a
href="https://www.instagram.com/digitalmarketxxi"
target="_blank"
><i class="fa-brands fa-instagram"></i> digitalmarketxxi
</a>
</li>
<li>
<a
href="https://www.facebook.com/digitalmarketxxi"
target="_blank"
><i class="fa-brands fa-facebook"></i> digitalmarketxxi
</a>
</li>
<li>
<a href="https://wa.link/0r3gmg" target="whatsapp"
><i class="fa-brands fa-whatsapp"></i> +543417470919
</a>
</li>
</ul>
</div>
<div class="footer_suscripcion">
<form action="#" method="POST">
<label for="footer_email">Recibí ofertas y promociones</label>
<div>
<input
type="email"
name="email"
id="footer_email"
placeholder="Ingresá tu email"
required
/>
<button type="submit">
<i class="fa-solid fa-share-from-square"></i>
</button>
</div>
</form>
</div>
</section>
<hr />
<section class="footer_informacion">
<div>
<h4>Horarios de atención</h4>
<p>
Lunes a Viernes de 9 a 17hs<br />Sábados de 10 a 12hs<br /><a
href="mailto:dmrosario1045@gmail.com"
>dmrosario1045@gmail.com</a
>
</p>
</div>
<div>
<h4>Comprar en Digital Market</h4>
<ul>
<li><a href="#">Servicio técnico</a></li>
<li><a href="#">Política de privacidad</a></li>
<li><a href="#">Botón de arrepentimiento</a></li>
</ul>
</div>
<div>
<h4>Recomendados</h4>
<ul>
<li><a href="./categoria.html">Samsung</a></li>
<li><a href="./categoria.html">iPhone</a></li>
<li><a href="./categoria.html">Motorola</a></li>
<li><a href="./categoria.html">Xiaomi</a></li>
</ul>
</div>
<div>
<h4>Ayuda</h4>
<ul>
<li><a href="./contacto.html">Contactanos</a></li>
<li><a href="#">Dirección de showroom</a></li>
<li><a href="#">Vendé en Digital Market</a></li>
<li><a href="#">Trabajá con nosotros</a></li>
</ul>
</div>
</section>
</footer>
<!-- OWL Carousel & jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<script src="./static/scripts/navbar.js"></script>
<script src="./static/scripts/carousel.js"></script>
</body>
</html>