-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (57 loc) · 1.77 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
<html lang="pt-BR">
<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/styles/style.css" />
<title>Kenzie Food | Home</title>
</head>
<body>
<header class="cabecalho">
<h1 class="titulo">Kenzie<span>Food</span></h1>
<button class="usuario">
<i class="fa-solid fa-user"></i>
<ul class="acesso">
<li class="acesso__login">Login</li>
<li class="acesso__cadastro">Cadastro</li>
</ul>
</button>
<div class="pesquisa__moldura">
<i class="fa-solid fa-magnifying-glass"></i>
<input
class="pesquisa"
type="text"
name="pesquisa"
placeholder="Pesquisar por produtos"
/>
</div>
</header>
<section class="tela__centro">
<main class="vitrine__moldura">
<nav class="filtros"></nav>
<section class="vitrine"></section>
</main>
<aside class="carrinho">
<h3 class="carrinho__titulo">
<i class="fa-solid fa-cart-arrow-down"></i>Carrinho
</h3>
<section class="carrinho__produtos"></section>
<section class="carrinho__resumo vazio">
<div class="carrinho__resumo--qtd">
<p>Quantidade:</p>
<p id="quantidade">0</p>
</div>
<div class="carrinho__resumo--total">
<p>Total:</p>
<p id="valor">R$00,00</p>
</div>
</section>
</aside>
</section>
<script src="./src/script.js" type="module"></script>
<script
src="https://kit.fontawesome.com/8fa2904e7b.js"
crossorigin="anonymous"
></script>
</body>
</html>