-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
599 lines (557 loc) · 21.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rymo - Home</title>
<!--================== FAVICON ===================-->
<link rel="icon" href="assets/img/logoIcon.png" />
<!--================== CSS ===================-->
<link rel="stylesheet" href="assets/css/home.css" />
<link rel="stylesheet" href="assets/css/mainLayout.css" />
<!--================== LINK THUMBNAIL META TAGS ===================-->
<!-- MS Tile - for Microsoft apps-->
<meta
name="msapplication-TileImage"
content="https://raw.githubusercontent.com/Thiagoow/Rymo-EcommerceWebsite-ResponsiveWithBootstrap/master/assets/img/ThumbnailLinkImg.jpg"
/>
<!-- fb & Whatsapp -->
<meta property="og:site_name" content="Rymo." />
<meta property="og:title" content="Os Melhores Preços do Ano" />
<meta
property="og:description"
content="Loja virtual fictícia de roupas, sapatos/tênis e acessórios."
/>
<!-- IMG URL: -->
<meta
property="og:image"
content="https://raw.githubusercontent.com/Thiagoow/Rymo-EcommerceWebsite-ResponsiveWithBootstrap/master/assets/img/ThumbnailLinkImg.jpg"
/>
<meta property="og:type" content="website" />
<meta property="og:image:type" content="image/jpeg" />
<!-- size up to 300px. Anything above this will not work in WhatsApp -->
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<meta property="og:url" content="https://rymo.netlify.app/" />
<!-- FontAwesome CDN: -->
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<!-- Bootstrap stackPath CSS: -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
</head>
<body>
<!-- Bootstrap Jquery and Js separate files: -->
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
crossorigin="anonymous"
></script>
<!-- NavBar: -->
<nav class="navbar navbar-expand-lg navbar-light bg-white py-3 fixed-top">
<div class="container">
<a href="../index.html">
<img src="assets/img/logo1.png" alt="" />
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span><i id="bar" class="fas fa-bars"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav_link active" href="../index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav_link" href="/pages/loja.html">Loja</a>
</li>
<li class="nav-item">
<a class="nav_link" href="/pages/blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav_link" href="#">Sobre nós</a>
</li>
<li class="nav-item">
<a class="nav_link" href="#">Contato</a>
</li>
<li class="nav-item">
<i class="fal fa-search"></i>
</li>
<li class="nav-item">
<a href="/pages/carrinho.html">
<i class="fal fa-shopping-bag"></i>
</a>
</li>
</li>
</ul>
</div>
</div>
</nav>
<section id="home">
<div class="container">
<h5>Lançamentos</h5>
<h1>Os <bMain>Melhores Preços</bMain> do Ano</h1>
<p>
Lorem ipsum dolor sit amet consectetur <br />
adipisicing elit.
</p>
<button class="text-uppercase">Compre Agora</button>
</div>
</section>
<section class="container" id="brands">
<div class="row m-0 py-5">
<!-- As classes dessas imagens são do próprio bootstrap,
deixa as imagens responsivas a partir de 2 colunas pra telas
largas, 4 para telas médias, e 6 para telas pequenas: -->
<img
class="img-fluid col-lg-2 col-md-4 col-6"
src="assets/img/brand/1.png"
alt=""
/>
<img
class="img-fluid col-lg-2 col-md-4 col-6"
src="assets/img/brand/2.png"
alt=""
/>
<img
class="img-fluid col-lg-2 col-md-4 col-6"
src="assets/img/brand/3.png"
alt=""
/>
<img
class="img-fluid col-lg-2 col-md-4 col-6"
src="assets/img/brand/4.png"
alt=""
/>
<img
class="img-fluid col-lg-2 col-md-4 col-6"
src="assets/img/brand/5.png"
alt=""
/>
<img
class="img-fluid col-lg-2 col-md-4 col-6"
src="assets/img/brand/6.png"
alt=""
/>
</div>
</section>
<section class="w-100" id="categories">
<div class="row p-0 m-0">
<div class="one p-0 col-lg-4 col-md-12 col-12">
<img class="img-fluid" src="assets/img/new/1.jpg" alt="" />
<div class="details">
<h2>Tênis Esportivos</h2>
<button class="text-uppercase">Comprar Agora</button>
</div>
</div>
<div class="one p-0 col-lg-4 col-md-12 col-12">
<img class="img-fluid" src="assets/img/new/5.jpg" alt="" />
<div class="details">
<h2>Trajes Sociais</h2>
<button class="text-uppercase">Comprar Agora</button>
</div>
</div>
<div class="one p-0 col-lg-4 col-md-12 col-12">
<img class="img-fluid" src="assets/img/new/3.jpg" alt="" />
<div class="details">
<h2>Relógios de Pulso</h2>
<button class="text-uppercase">Comprar Agora</button>
</div>
</div>
</div>
</section>
<section class="my-5 pb-5" id="featured">
<div class="container text-center mt-5 py-5">
<h3>Em Destaque</h3>
<!-- Linha pra separar o conteúdo: -->
<hr class="mx-auto" />
<p>Aqui você pode ver os novos produtos da Rymo.</p>
</div>
<div class="row mx-auto container-fluid">
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/featured/1.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Tênis Esportivos</h5>
<h4 class="p-price">R$98,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/featured/2.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Tênis Casuais</h5>
<h4 class="p-price">R$50,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/featured/3.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Mochila Casual</h5>
<h4 class="p-price">R$79,80</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/featured/4.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Gorros de Inverno</h5>
<h4 class="p-price">R$20,50</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
</div>
</section>
<section class="my-5 py-5" id="parallaxBanner">
<div class="container">
<h4>Nova promoção de temporada</h4>
<h1>
Coleção de inverno com <br />
MAIS DE 20% OFF!
</h1>
<button class="text-uppercase">Compre Agora</button>
</div>
</section>
<section class="my-5" id="clothes">
<div class="container text-center mt-5 py-5">
<h3>Nova Coleção Feminina</h3>
<!-- Linha pra separar o conteúdo: -->
<hr class="mx-auto" />
<p>Aqui você pode conferir a nova coleção feminina da Rymo.</p>
</div>
<div class="row mx-auto container-fluid">
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/clothes/1.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Traje Social Listrado</h5>
<h4 class="p-price">R$150,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/clothes/2.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Vestido Listrado</h5>
<h4 class="p-price">R$50,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/clothes/3.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Camiseta Preta</h5>
<h4 class="p-price">R$25,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/clothes/4.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Camiseta Branca</h5>
<h4 class="p-price">R$24,50</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
</div>
</section>
<section class="my-5" id="watches">
<div class="container text-center mt-5 py-5">
<h3>Relógios Masculinos</h3>
<!-- Linha pra separar o conteúdo: -->
<hr class="mx-auto" />
<p>
Aqui você pode conferir a nova coleção de relógios masculinos da Rymo.
</p>
</div>
<div class="row mx-auto container-fluid">
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/watches/1.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Preto Executivo Couro</h5>
<h4 class="p-price">R$150,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/watches/2.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Preto Casual Couro</h5>
<h4 class="p-price">R$50,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/watches/3.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Prateado Casual Aço</h5>
<h4 class="p-price">R$25,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/watches/4.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Preto e Dourado Couro</h5>
<h4 class="p-price">R$24,50</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
</div>
</section>
<section class="my-5" id="boots">
<div class="container text-center mt-5 py-5">
<h3>Sapatos de Couro Masculino</h3>
<!-- Linha pra separar o conteúdo: -->
<hr class="mx-auto" />
<p>
Aqui você pode conferir a nova coleção de sapatos de couro da Rymo.
</p>
</div>
<div class="row mx-auto container-fluid">
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/shoes/8.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Preto e Branco Casual</h5>
<h4 class="p-price">R$150,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/shoes/7.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Marrom Casual</h5>
<h4 class="p-price">R$100,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/shoes/6.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Marrom Escuro Executivo</h5>
<h4 class="p-price">R$175,00</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-12">
<img class="img-fluid mb-3" src="assets/img/shoes/5.jpg" alt="" />
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h5 class="p-name">Bege Casual</h5>
<h4 class="p-price">R$124,50</h4>
<button class="buy-btn text-uppercase">Compre Agora</button>
</div>
</div>
</section>
<footer class="mt-5 py-5">
<div class="row container mx-auto pt-5">
<div class="footer-one col-lg-3 col-md-6 col-12">
<img src="assets/img/logo2.png" alt="" />
<p class="pt-3">
A <bMain>Rymo.</bMain> é uma loja on-line de roupas fictícia. Criada
por
<a href="https://github.com/Thiagoow" target="_blank"
>Thiago Silva Lopes</a
>
em 2021. Para treinar HTML, CSS, JS e Bootstrap. Você pode conferir
todo o código desse website nesse link:
<a
href="https://github.com/Thiagoow/Rymo-EcommerceWebsite-ResponsiveWithBootstrap"
target="_blank"
>Meu GitHub</a
>
</p>
</div>
<div class="footer-one col-lg-3 col-md-6 col-12 mb-3">
<h5 class="pb-2">Categorias</h5>
<ul class="list-unstyled">
<li><a href="">Feminino</a></li>
<li><a href="">Masculino</a></li>
<li><a href="">Infantil Feminino</a></li>
<li><a href="">Infantil Masculino</a></li>
<li><a href="">Lançamentos</a></li>
<li><a href="">Sapatos/Tênis</a></li>
<li><a href="">Relógios</a></li>
</ul>
</div>
<div class="footer-one col-lg-3 col-md-6 col-12 mb-3">
<h5 class="pb-2">Contate-nos</h5>
<div class="">
<h6 class="text-capitalize">Endereço</h6>
<p>Rua 123, Cidade, Estado</p>
</div>
<div class="">
<h6 class="text-capitalize">Telefone</h6>
<p>(12) 12345-6789</p>
</div>
<div class="">
<h6 class="text-capitalize">E-mail</h6>
<p>
<a href="mailto:thiagodrive08@hotmail.com"
>thiagodrive08@hotmail.com</a
>
</p>
</div>
</div>
<div class="footer-one col-lg-3 col-md-6 col-12">
<h5 class="pb-2">Instagram</h5>
<div class="row">
<img
class="img-fluid w-25 h-100 m-2"
src="assets/img/insta/1.jpg"
alt=""
/>
<img
class="img-fluid w-25 h-100 m-2"
src="assets/img/insta/2.jpg"
alt=""
/>
<img
class="img-fluid w-25 h-100 m-2"
src="assets/img/insta/3.jpg"
alt=""
/>
<img
class="img-fluid w-25 h-100 m-2"
src="assets/img/insta/4.jpg"
alt=""
/>
<img
class="img-fluid w-25 h-100 m-2"
src="assets/img/insta/5.jpg"
alt=""
/>
</div>
</div>
</div>
<div class="copyright mt-5">
<div class="row container mx-auto mb-4">
<div class="col-lg-3 col-md-6 col-12">
<img src="assets/img/payment.png" alt="" />
</div>
<div class="col-lg-4 col-md-6 col-12 text-nowrap mb-2">
<p>© 2021 Thiago Silva Lopes. Todos os direitos reservados</p>
</div>
<div class="row">
<p class="mx-1 ml-4">
<a href="https://github.com/Thiagoow" target="_blank"
><i class="fab fa-github"></i
></a>
</p>
<p class="mx-1">
<a
href="https://www.linkedin.com/in/thiagosilvaloopes/"
target="_blank"
><i class="fab fa-linkedin"></i
></a>
</p>
<p class="mx-1">
<a href="https://twitter.com/Thiaagows" target="_blank"
><i class="fab fa-twitter"></i
></a>
</p>
</div>
</div>
</div>
</footer>
</body>
</html>