-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
373 lines (362 loc) · 12.3 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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<!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" />
<!-- page icon -->
<link
rel="shortcut icon"
href="assets/images/page-icon.png"
type="image/x-icon"
/>
<!-- 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=Raleway:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<!-- icons -->
<script src="https://kit.fontawesome.com/8824e79a3c.js" crossorigin="anonymous"></script>
<!-- css -->
<link rel="stylesheet" href="css/general.css" />
<link rel="stylesheet" href="css/nav.css" />
<link rel="stylesheet" href="css/nav/nav-logo.css" />
<link rel="stylesheet" href="css/nav/nav-login-btn.css" />
<link rel="stylesheet" href="css/nav/nav-icon-search.css" />
<link rel="stylesheet" href="css/nav/nav-search.css" />
<link rel="stylesheet" href="css/nav/nav-search-input.css" />
<link rel="stylesheet" href="css/nav/nav-search-btn.css" />
<link rel="stylesheet" href="css/nav/nav-input-hide.css" />
<link rel="stylesheet" href="css/hero.css" />
<link rel="stylesheet" href="css/hero/hero-info-title.css" />
<link rel="stylesheet" href="css/hero/hero-info-description.css" />
<link rel="stylesheet" href="css/hero/hero-info-btn.css" />
<link rel="stylesheet" href="css/products.css" />
<link rel="stylesheet" href="css/products/products-category.css" />
<link rel="stylesheet" href="css/products/products-title.css" />
<link rel="stylesheet" href="css/products/products-link.css" />
<link rel="stylesheet" href="css/products/products-items.css" />
<link rel="stylesheet" href="css/products/products-img.css" />
<link rel="stylesheet" href="css/products/products-name.css" />
<link rel="stylesheet" href="css/products/products-price.css" />
<link rel="stylesheet" href="css/products/products-detail.css" />
<link rel="stylesheet" href="css/about.css" />
<link rel="stylesheet" href="css/error-msj.css" />
<link rel="stylesheet" href="css/about/about-text.css" />
<link rel="stylesheet" href="css/about/about-logo.css" />
<link rel="stylesheet" href="css/about/about-link.css" />
<link rel="stylesheet" href="css/about/about-contact.css" />
<link rel="stylesheet" href="css/about/about-contact-title.css" />
<link rel="stylesheet" href="css/about/about-contact-form.css" />
<link rel="stylesheet" href="css/about/about-contact-form-name.css" />
<link rel="stylesheet" href="css/about/about-contact-form-message.css" />
<link rel="stylesheet" href="css/about/about-contact-form-btn.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="css/footer/footer-text.css" />
<link rel="stylesheet" href="css/footer/footer-icons.css" />
<title>Alura Geek E-Commerce</title>
</head>
<body>
<!-- navbar -->
<header class="nav__container">
<a href="index.html">
<img
src="assets/images/Logo.svg"
alt="alura geek Logo"
class="nav__icon__logo"
/>
</a>
<a href="login.html" class="nav__login__btn"
><button id="nav-login-btn" class="nav__login__btn"></button></a
>
<div class="nav__search input--hide">
<input
type="search"
name="search"
id="search"
class="nav__search__input"
placeholder="¿Que deseas buscar?"
/>
<button class="nav__search__btn">
<img id="search__icon" src="assets/images/search-icon.svg" alt="buscar" />
</button>
</div>
<label for="search"
><img
src="assets/images/search-icon.svg"
alt="icono busqueda"
class="nav__icon__search"
/></label>
</header>
<!-- hero -->
<section class="hero__container">
<div class="hero__img"></div>
<h2 class="hero__info__title">Febrero Promocional</h2>
<h4 class="hero__info__description">
Productos seleccionados con 33% de descuento
</h4>
<button class="hero__info__btn" data-category="Consolas" >Ver consolas</button>
</section>
<!-- content -->
<main>
<section class="products">
<div class="product__category">
<h3 class="products__title">Star Wars</h3>
<a id="StarWars" class="products__link reference allPrdBtn">
Ver todo</a
>
<div class="products__item">
<img
src="assets/images/starwars1.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Producto XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="s1" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/starwars2.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Producto XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="s2" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/starwars3.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Producto XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="s3" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/starwars4.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Producto XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="s4" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/starwars5.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Producto XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="s5" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/starwars6.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Producto XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="s6" class="products__detail">Ver producto</a>
</div>
</div>
<div class="product__category">
<h3 class="products__title">Consolas</h3>
<a id="Consolas" class="products__link reference allPrdBtn"
>Ver todo</a
>
<div class="products__item">
<img
src="assets/images/consolas1.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Control XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="c1" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/consolas2.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Control y consola XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="c2" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/consolas3.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Consola XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="c3" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/consolas4.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Control XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="c4" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/consolas5.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Consola XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="c5" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/consolas6.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Game Boy color</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="c6" class="products__detail">Ver producto</a>
</div>
</div>
<div class="product__category">
<h3 class="products__title">Diversos</h3>
<a id="Diversos" class="products__link reference allPrdBtn"
>Ver todo</a
>
<div class="products__item">
<img
src="assets/images/diversos1.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Camisa Atari</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="d1" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/diversos2.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Camisa SNES</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="d2" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/diversos3.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Control y consola</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="d3" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/diversos4.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Control y consola</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="d4" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/diversos5.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Control y consola</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="d5" class="products__detail">Ver producto</a>
</div>
<div class="products__item">
<img
src="assets/images/diversos6.png"
alt="product image"
class="products__img"
/>
<h5 class="products__name">Producto XYZ</h5>
<h4 class="products__price">$ 60,00</h4>
<a id="d6" class="products__detail">Ver producto</a>
</div>
</div>
</section>
</main>
<!-- form -->
<article class="about">
<section class="about__text">
<img
src="assets/images/Logo.svg"
alt="alura geek logo"
class="about__logo"
/>
<a href="#" class="about__link">Quienes somos</a>
<a href="#" class="about__link">Politica de privacidad</a>
<a href="#" class="about__link">Programa de fidelidad</a>
<a href="#" class="about__link">Nuestras tiendas</a>
<a href="#" class="about__link">Quiero ser franquiciado</a>
<a href="#" class="about__link">Anuncie aqui</a>
</section>
<section class="about__contact">
<h2 class="about__contact__title">Hable con nosotros</h2>
<form action="" class="about__contact__form" id="contact__form">
<input
type="text"
name="Nombre"
placeholder="Ingrese su nombre"
class="about__contact__form__name"
data-nombre
/>
<span class="about__error--msj"></span>
<textarea
name="mensaje"
id="message"
cols="30"
rows="10"
placeholder="Escribe tu mensaje"
class="about__contact__form__message"
data-mensaje
></textarea>
<span class="about__error--msj"></span>
<input
type="submit"
value="Enviar Mensaje"
class="about__contact__form__btn"
data-about-form-submit
/>
</form>
</section>
</article>
<!-- footer -->
<footer>
<h2 class="footer__text">Desarrollado por Ezequiel Massa © 2022</h2>
<div class="footer__icons">
<a href="https://github.com/EzequielMassa" target="blank"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/ezequiel-massa-dev/" target="blank"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://ezequielmassa.github.io/Portfolio-Oracle-ONE/" target="blank"><i class="fa-solid fa-address-card"></i></a>
</div>
</footer>
<script type="module" src="app.js"></script>
<script type="module" src="service/index-products.js"></script>
</body>
</html>