-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 2.09 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./styles/reset.css">
<title>Alura Geek Challenger</title>
</head>
<header>
<div class="menu-nav">
<div class="menu-logotipo">
<img src="./assets/img/image 1.png" alt="" srcset="">
</div>
<div class="menu-icones">
<img src="./assets/icones/telephone-call.png" alt="icone-telefone">
<a href="">(11) 99999-9999</a>
<a href="./pages/cadastro.html"><img src="./assets/icones/user.png" alt="icone-usuario"></a>
<img src="./assets/icones/bag.png" alt="icone-sacola">
</div>
</div>
</header>
<body>
<main class="loja-container">
<div class="banner-flores">
<img src="./assets/img/dia-das-maes.png" alt="banner-flores">
</div>
</main>
<section class="itens-container">
<div class="opcoes-itens">
<ul>
<li><a href="">Buques (2)</a></li>
<li><a href="">Cestas (2)</a></li>
<li><a href="">Presentes (2)</a></li>
<li><a href="">Pelucias (2)</a></li>
<li><a href="">Bomboms (2)</a></li>
</ul>
</div>
<div class="lista-itens" data-lista>
<!--<div class="produto-item">
<img class="imagem-produto" src="./assets/img/buque-rosas.png" alt="">
<h1 class="titulo-produto">BUQUE DE ROSAS 12UN</h1>
<p class="valor-produto">R$: 29,99 </p>
<span class="descricao-produto"> 3x de R$ 9,99</span>
</div>
-->
</div>
</section>
<footer>
<h1>2024 @ Copyright HDev Developer.</h1>
</footer>
<script type="module" src="./js/mostraProdutos.js"></script>
<script type="module" src="./js/criaProduto.js"></script>
</body>
</html>