-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (115 loc) · 4.49 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
<!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="./src/css/reset.css" />
<link rel="stylesheet" href="./src/css/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fontawesome.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<title>Lista de Produtos</title>
</head>
<body>
<!-- CABEÇALHO -->
<header>
<h1>Shop now</h1>
</header>
<!-- PARTE PRINCIPAL -->
<main>
<section class="filtersContainer">
<div id="botoesContainer">
<button class="estiloGeralBotoes estiloGeralBotoes--filter">
Todos Produtos
</button>
<button class="estiloGeralBotoes estiloGeralBotoes--filter">
Hortifruti
</button>
<button class="estiloGeralBotoes estiloGeralBotoes--filter">
Panificadora
</button>
<button class="estiloGeralBotoes estiloGeralBotoes--filter">
Laticínio
</button>
</div>
<div class="containerBuscaPorNome">
<input
type="text"
placeholder="Pesquisar por"
class="campoBuscaPorNome"
/>
<button
id="botaoPesquisa"
class="estiloGeralBotoes estiloGeralBotoes--botaoBuscaPorNome"
>
<img src="./src/img/search.png" alt="lupa" />
</button>
</div>
</section>
<section class="priceContainer">
<div>
<img src="./src/img/alert-circle.png" alt="exclamação de alerta">
<p>Valor total dos produtos da sessão selecionada</p>
</div>
<span class="valor-total"></span>
</section>
<!-- CONTAINER DE PRODUTOS -->
<div class="container-vitrine-carrinho">
<section class="containerVitrine">
<div class="containerListaProdutos">
<ul class="listaProdutos">
<!-- Utilize esse item html como template para a construção da lista de produtos
Você pode remover esses comentários depois que fizer a construção pelo DOM -->
<!-- <li>
<img src="./src/img/maça.png" alt="Imagem maçã">
<h3>Maçã</h3>
<span>Hortifruti</span>
<p>R$ 2.00</p>
</li> -->
</ul>
</div>
</section>
<section class="container-section-carrinho">
<div class="container-carrinho">
<div class="container-carrinho-titulo">
<div class="container-header-carrinho">
<img src="./src/img/carrinho.png" alt="" class="imagem-header-carrinho">
<p>Carrinho</p>
</div>
</div>
<ul class="container-lista-carrinho">
<!-- <li class="container-item-carrinho">
<div>
<img src="/src/img/banana.png" alt="" class="container-card-imagem-carrinho">
</div>
<div class="container-descricao-produto-carrinho">
<h2 class="container-nome-item-carriho">Banana</h2>
<p class="container-secao-carrinho">Hortifruti</p>
<h2 class="container-valor-carrinho">R$ 2</h2>
</div>
<a href="#" class="container-rmvCarrinho"><img src="/src/img/lixeira.png" alt=""></a>
</li> -->
</ul>
<div class="container-footer-carrinho">
<!-- <div>
<p class="container-total-carrinho">Quantidade:</p>
<p>Total</p>
</div>
<div>
<p class="container-total-carrinho">3</p>
<p>R$ 200,00</p>
</div> -->
</div>
</div>
</section>
</div>
</main>
<script src="./src/js/dataProdutos.js"></script>
<script src="./src/js/script.js"></script>
</body>
</html>