forked from sergiomoura/shoes-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (120 loc) · 4.26 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
<!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">
<link rel="stylesheet" href="./public/css/styles.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
</style>
<title>Shoes</title>
</head>
<body>
<header>
<img src="./public/img/logo-color.png" alt="Vantagens">
<nav>
<ul>
<li><a href="#">Todos os Produtos</a></li>
<li><a href="#">Coleções</a></li>
<li><a href="#">Outlet</a></li>
</ul>
</nav>
</header>
<section class="banner">
<img class="bannerimg" src="./public/img/banner.png" alt="Shoes">
</section>
<section class="estilo" id="estilo">
<h2>encontre seu estilo</h2>
<div class="container">
<img id="1" src="./public/img/photoshoot-1.png" alt="">
<img id="2" src="./public/img/photoshoot-2.png" alt="">
</div>
</section>
<section class="off">
<br>
<h2>30% OFF</h2>
<div class="container">
<a href="#">
<img src="./public/img/shoes1.png" alt="">
<div>
<span class="nome">Scarpin Salto Fino Básico</span>
<br>
<span class="preco">R$ 140,00</span>
</div>
</a>
<a href="#">
<img src="./public/img/shoes2.png" alt="">
<div>
<span class="nome">Scarpin Salto Fino Básico</span>
<br>
<span class="preco">R$ 140,00</span>
</div>
</a>
<a href="#">
<img src="./public/img/shoes3.png" alt="">
<div>
<span class="nome">Scarpin Salto Fino Básico</span>
<br>
<span class="preco">R$ 140,00</span>
</div>
</a>
<a href="#">
<img src="./public/img/shoes4.png" alt="">
<div>
<span class="nome">Scarpin Salto Fino Básico</span>
<br>
<span class="preco">R$ 140,00</span>
</div>
</a>
</div>
</section>
<section class="grid-container destaque">
<div class="destaque-texto">
<h2>
Sandália Palmilha<br>
Matelassê Tiras Rolote
</h2>
<a class="button destaque-texto" href="#">ver detalhes</a>
</div>
<img class="detalhe" src="./public/img/photoshoot-3.png" alt="Detalhe do produto">
<img class="modelo" src="./public/img/photoshoot-4.png" alt="Produto na modelo">
</section>
<footer>
<section class="Contatos">
<img src="./public/img/logo-white.png" alt="Shoes">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
<br>
Voluptate molestiae, aspernatur porro sapiente
<br>
quasi numquam distinctio libero corporis
</p>
</section>
<section class="Links">
<article class="categorias">
<ul>
<li><a href="#">sandálias</a></li>
<li><a href="#">botas</a></li>
<li><a href="#">tênis</a></li>
<li><a href="#">oxford</a></li>
<li><a href="#">cuturnos</a></li>
</ul>
</article>
</section>
<section>
<article class="Institucional">
<ul>
<li><a href="#">sobre nós</a></li>
<li><a href="#">perguntas frequentes</a></li>
<li><a href="#">políticas de privacidade</a></li>
<li><a href="#">rastreamento de produtos</a></li>
<li><a href="#">fale conosco</a></li>
</ul>
</article>
</section>
</footer>
</body>
</html>