-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
622 lines (491 loc) · 27.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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<link rel="stylesheet" href="css/styles.css">
<title>Elegant hand</title>
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">
<i class='bx bxs-watch nav__logo-icon'></i> ElegantHand
</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link active-link">Inicio</a>
</li>
<li class="nav__item">
<a href="#featured" class="nav__link">Destacados</a>
</li>
<li class="nav__item">
<a href="#products" class="nav__link">Productos</a>
</li>
<li class="nav__item">
<a href="#new" class="nav__link">Nuevos</a>
</li>
</ul>
<div class="nav__close" id="nav-close">
<i class='bx bx-x' ></i>
</div>
</div>
<div class="nav__btns">
<i class='bx bx-moon change-theme' id="theme-button"></i>
<div class="nav__shop" id="cart-shop">
<i class='bx bx-shopping-bag' ></i>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-grid-alt' ></i>
</div>
</div>
</nav>
</header>
<div class="cart" id="cart">
<i class='bx bx-x cart__close' id="cart-close"></i>
<h2 class="cart__title-center">Mi carrito</h2>
<div class="cart__container">
<article class="cart__card">
<div class="cart__box">
<img src="img/featured1.png" alt="" class="cart__img">
</div>
<div class="cart__details">
<h3 class="cart__title">Jazzmaster</h3>
<span class="cart__price">$105.000</span>
<div class="cart__amount">
<div class="cart__amount-content">
<span class="cart__amount-box">
<i class='bx bx-minus' ></i>
</span>
<span class="cart__amount-number">1</span>
<span class="cart__amount-box">
<i class='bx bx-plus' ></i>
</span>
</div>
<i class='bx bx-trash-alt cart__amount-trash' ></i>
</div>
</div>
</article>
<article class="cart__card">
<div class="cart__box">
<img src="img/featured3.png" alt="" class="cart__img">
</div>
<div class="cart__details">
<h3 class="cart__title">Rose Gold</h3>
<span class="cart__price">$85.000</span>
<div class="cart__amount">
<div class="cart__amount-content">
<span class="cart__amount-box">
<i class='bx bx-minus' ></i>
</span>
<span class="cart__amount-number">1</span>
<span class="cart__amount-box">
<i class='bx bx-plus' ></i>
</span>
</div>
<i class='bx bx-trash-alt cart__amount-trash' ></i>
</div>
</div>
</article>
<article class="cart__card">
<div class="cart__box">
<img src="img/new1.png" alt="" class="cart__img">
</div>
<div class="cart__details">
<h3 class="cart__title">Longines Rose</h3>
<span class="cart__price">$98.000</span>
<div class="cart__amount">
<div class="cart__amount-content">
<span class="cart__amount-box">
<i class='bx bx-minus' ></i>
</span>
<span class="cart__amount-number">1</span>
<span class="cart__amount-box">
<i class='bx bx-plus' ></i>
</span>
</div>
<i class='bx bx-trash-alt cart__amount-trash' ></i>
</div>
</div>
</article>
</div>
<div class="cart__prices">
<span class="cart__prices-item">3 productos</span>
<span class="cart__prices-total">$298.000</span>
</div>
</div>
<main class="main">
<section class="home" id="home">
<div class="home__container container grid">
<div class="home__img-bg">
<img src="img/home.png" alt="" class="home__img">
</div>
<div class="home__social">
<a href="https://www.facebook.com/" target="_blank" class="home__social-link">
Facebook
</a>
<a href="https://twitter.com/" target="_blank" class="home__social-link">
Twitter
</a>
<a href="https://www.instagram.com/" target="_blank" class="home__social-link">
Instagram
</a>
</div>
<div class="home__data">
<h1 class="home__title">NUEVO RELOJ <br> COLECCION B720</h1>
<p class="home__description">
Última llegada de los nuevos relojes importados de la serie B720, con un diseño moderno y resistente.
</p>
<span class="home__price">$124.000</span>
<div class="home__btns">
<a href="#" class="button button--gray button--small">
Ver mas
</a>
<button class="button home__button">AGREGAR AL CARRITO</button>
</div>
</div>
</div>
</section>
<section class="featured section container" id="featured">
<h2 class="section__title">
Destacados
</h2>
<div class="featured__container grid">
<article class="featured__card">
<span class="featured__tag">Oferta</span>
<img src="img/featured1.png" alt="" class="featured__img">
<div class="featured__data">
<h3 class="featured__title">Dayton</h3>
<span class="featured__price">$105.000</span>
</div>
<button class="button featured__button">AGREGAR AL CARRITO</button>
</article>
<article class="featured__card">
<span class="featured__tag">Oferta</span>
<img src="img/featured2.png" alt="" class="featured__img">
<div class="featured__data">
<h3 class="featured__title">Datejust</h3>
<span class="featured__price">$95.000</span>
</div>
<button class="button featured__button">AGREGAR AL CARRITO</button>
</article>
<article class="featured__card">
<span class="featured__tag">Oferta</span>
<img src="img/featured3.png" alt="" class="featured__img">
<div class="featured__data">
<h3 class="featured__title">biatec</h3>
<span class="featured__price">$85.000</span>
</div>
<button class="button featured__button">AGREGAR AL CARRITO</button>
</article>
</div>
</section>
<section class="story section container">
<div class="story__container grid">
<div class="story__data">
<h2 class="section__title story__section-title">
Nuestra historia
</h2>
<h1 class="story__title">
Reloj inspirador de <br> este año
</h1>
<p class="story__description">
Los últimos y modernos relojes de este año, están disponibles en varias presentaciones en esta tienda, descúbrelos ahora.
</p>
<a href="#" class="button button--small">Descubrir</a>
</div>
<div class="story__images">
<img src="img/story.png" alt="" class="story__img">
<div class="story__square"></div>
</div>
</div>
</section>
<section class="products section container" id="products">
<h2 class="section__title">
Productos
</h2>
<div class="products__container grid">
<article class="products__card">
<img src="img/product1.png" alt="" class="products__img">
<h3 class="products__title">Spirit rose</h3>
<span class="products__price">$150.000</span>
<button class="products__button">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
<article class="products__card">
<img src="img/product2.png" alt="" class="products__img">
<h3 class="products__title">Khaki pilot</h3>
<span class="products__price">$135.000</span>
<button class="products__button">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
<article class="products__card">
<img src="img/product3.png" alt="" class="products__img">
<h3 class="products__title">Panerai</h3>
<span class="products__price">$87.000</span>
<button class="products__button">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
<article class="products__card">
<img src="img/product4.png" alt="" class="products__img">
<h3 class="products__title">Fosil me3</h3>
<span class="products__price">$65.000</span>
<button class="products__button">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
<article class="products__card">
<img src="img/product5.png" alt="" class="products__img">
<h3 class="products__title">Montblanc </h3>
<span class="products__price">$95.000</span>
<button class="products__button">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
<article class="products__card">
<img src="img/product6.png" alt="" class="products__img">
<h3 class="products__title">Duchen</h3>
<span class="products__price">$95.000</span>
<button class="products__button">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
</div>
</section>
<section class="testimonial section container">
<div class="testimonial__container grid">
<div class="swiper testimonial-swiper">
<div class="swiper-wrapper">
<div class="testimonial__card swiper-slide">
<div class="testimonial__quote">
<i class='bx bxs-quote-alt-left' ></i>
</div>
<p class="testimonial__description">
Tson los mejores relojes que uno adquiere, ademas siempre estan a la ultima
novedades y tendencias, con un precio muy cómodo y sobre todo con la atención
que recibes, siempre están atentos a tus consultas.
</p>
<h3 class="testimonial__date">22 Marzo. 2021</h3>
<div class="testimonial__perfil">
<img src="img/testimonial1.jpg" alt="" class="testimonial__perfil-img">
<div class="testimonial__perfil-data">
<span class="testimonial__perfil-name">Lee Doe</span>
<span class="testimonial__perfil-detail">Director de una empresa</span>
</div>
</div>
</div>
<div class="testimonial__card swiper-slide">
<div class="testimonial__quote">
<i class='bx bxs-quote-alt-left' ></i>
</div>
<p class="testimonial__description">
son los mejores relojes que uno adquiere, ademas siempre estan a la ultima
novedades y tendencias, con un precio muy cómodo y sobre todo con la atención
que recibes, siempre están atentos a tus consultas.
</p>
<h3 class="testimonial__date">2 Enero. 2021</h3>
<div class="testimonial__perfil">
<img src="img/testimonial2.jpg" alt="" class="testimonial__perfil-img">
<div class="testimonial__perfil-data">
<span class="testimonial__perfil-name">Samantha Mey</span>
<span class="testimonial__perfil-detail">Directora ejecutiva</span>
</div>
</div>
</div>
<div class="testimonial__card swiper-slide">
<div class="testimonial__quote">
<i class='bx bxs-quote-alt-left' ></i>
</div>
<p class="testimonial__description">
son los mejores relojes que uno adquiere, ademas siempre estan a la ultima
novedades y tendencias, con un precio muy cómodo y sobre todo con la atención
que recibes, siempre están atentos a tus consultas.
</p>
<h3 class="testimonial__date">27 Julio. 2020</h3>
<div class="testimonial__perfil">
<img src="img/testimonial3.jpg" alt="" class="testimonial__perfil-img">
<div class="testimonial__perfil-data">
<span class="testimonial__perfil-name">Raul Zaman</span>
<span class="testimonial__perfil-detail">Director de una empresa</span>
</div>
</div>
</div>
</div>
<div class="swiper-button-next next">
<i class='bx bx-right-arrow-alt' ></i>
</div>
<div class="swiper-button-prev prev">
<i class='bx bx-left-arrow-alt' ></i>
</div>
</div>
<div class="testimonial__images">
<div class="testimonial__square"></div>
<img src="img/testimonial.jpeg" alt="" class="testimonial__img">
</div>
</div>
</section>
<section class="new section container" id="new">
<h2 class="section__title">
Nuevos productos
</h2>
<div class="new__container">
<div class="swiper new-swiper">
<div class="swiper-wrapper">
<article class="new__card swiper-slide">
<span class="new__tag">Nuevo</span>
<img src="img/new1.png" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">Longines rose</h3>
<span class="new__price">$98.000</span>
</div>
<button class="button new__button">AGREGAR AL CARRITO</button>
</article>
<article class="new__card swiper-slide">
<span class="new__tag">Nuevo</span>
<img src="img/new2.png" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">Jazzmaster</h3>
<span class="new__price">$115.000</span>
</div>
<button class="button new__button">AGREGAR AL CARRITO</button>
</article>
<article class="new__card swiper-slide">
<span class="new__tag">Nuevo</span>
<img src="img/new3.png" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">Dreyfuss gold</h3>
<span class="new__price">$75.000</span>
</div>
<button class="button new__button">AGREGAR AL CARRITO</button>
</article>
<article class="new__card swiper-slide">
<span class="new__tag">Nuevo</span>
<img src="img/new4.png" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">Portuguese rose</h3>
<span class="new__price">$159.000</span>
</div>
<button class="button new__button">AGREGAR AL CARRITO</button>
</article>
<article class="new__card swiper-slide">
<span class="new__tag">Nuevo</span>
<img src="img/new5.png" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">tissot </h3>
<span class="new__price">$40.000</span>
</div>
<button class="button new__button">AGREGAR AL CARRITO</button>
</article>
<article class="new__card swiper-slide">
<span class="new__tag">Nuevo</span>
<img src="img/new6.png" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">Gmt Master </h3>
<span class="new__price">$130.000</span>
</div>
<button class="button new__button">AGREGAR AL CARRITO</button>
</article>
</div>
<div class="swiper-button-next next-new">
<i class='bx bx-right-arrow-alt' ></i>
</div>
<div class="swiper-button-prev prev-new">
<i class='bx bx-left-arrow-alt' ></i>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<section class="newsletter section container">
<div class="newsletter__bg grid">
<div>
<h2 class="newsletter__title">Suscribete a nuestro <br> boletin informativo</h2>
<p class="newsletter__description">
No te pierdas los descuentos. Suscribete a nuestro boletín de correo electrónico para obtener las mejores ofertas, descuentos, cupones, regalos y mucho más.
</p>
</div>
<form action="" class="newsletter__subscribe">
<input type="email" placeholder="ingresar correo" class="newsletter__input">
<button class="button">
SUSCRIBIRSE
</button>
</form>
</div>
</section>
</main>
<footer class="footer section">
<div class="footer__container container grid">
<div class="footer__content">
<h3 class="footer__title">Informacion</h3>
<ul class="footer__list">
<li>3456 - Argentina</li>
<li>San Miguel 3900</li>
<li>123-456-789</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Sobre nosotros</h3>
<ul class="footer__links">
<li>
<a href="#" class="footer__link">Centro de soporte</a>
</li>
<li>
<a href="#" class="footer__link">Atencion al cliente</a>
</li>
<li>
<a href="#" class="footer__link">Sobre nosotros</a>
</li>
<li>
<a href="#" class="footer__link">Derechos reservados</a>
</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Productos</h3>
<ul class="footer__links">
<li>
<a href="#" class="footer__link">Formal watches</a>
</li>
<li>
<a href="#" class="footer__link">Sports watches</a>
</li>
<li>
<a href="#" class="footer__link">Smart watches</a>
</li>
<li>
<a href="#" class="footer__link">Accesorios</a>
</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Redes sociales</h3>
<ul class="footer__social">
<a href="https://www.facebook.com/" target="_blank" class="footer__social-link">
<i class='bx bxl-facebook'></i>
</a>
<a href="https://twitter.com/" target="_blank" class="footer__social-link">
<i class='bx bxl-twitter' ></i>
</a>
<a href="https://www.instagram.com/" target="_blank" class="footer__social-link">
<i class='bx bxl-instagram' ></i>
</a>
</ul>
</div>
</div>
<div class="footer__copy">Pagina creada por <span>Nahuel61920</span></div>
</footer>
<a href="#" class="scrollup" id="scroll-up">
<i class='bx bx-up-arrow-alt scrollup__icon' ></i>
</a>
<script src="js/swiper-bundle.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>