-
Notifications
You must be signed in to change notification settings - Fork 0
/
produtos.html
65 lines (60 loc) · 1.76 KB
/
produtos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/styles.css">
<title>Produtos</title>
</head>
<body>
<header>
<nav class="navigation">
<div>
<img class="logo" src="assets/Logo.jfif" alt="Logo">
</div>
<div>
<ul class="nav_links">
<li class="links"><a href="">Lançamento</a></li>
<li class="links"><a href="">Ofertas</a></li>
<li class="links"><a href="">Mulheres</a></li>
<li class="links"><a href="">Homens</a></li>
<li class="links"><a href="">Infantil</a></li>
</ul>
</div>
<div class="nav_logos">
<input type="text">
<img src="assets/favorito.png" alt="">
<img src="assets/carrinho.png" alt="">
</div>
</nav>
</header>
<main class="produtos_flex">
<section class="produtos_fotos">
<img src="assets/Puma/T╥NIS CARINA STREET BDP (1).png" alt="">
<img src="assets/Puma/T╥NIS CARINA STREET BDP (2).png" alt="">
<img src="assets/Puma/T╥NIS CARINA STREET BDP (3).png" alt="">
<img src="assets/Puma/T╥NIS CARINA STREET BDP (4).png" alt="">
</section>
<section class="produtos_info">
<div>
<h3>Casual</h3>
<h2>TÊNIS CARINA STREET BDP</h2>
<h2>R$ 474,99</h2>
<h2>em até 10x sem juros</h2>
</div>
<div>
<span>39</span>
<span>39</span>
<span>39</span>
<span>39</span>
<span>39</span>
</div>
<div>
<button>Adicionar no carrinho</button>
<button>Favorito</button>
</div>
</section>
</main>
</body>
</html>