-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduto.html
111 lines (102 loc) · 4.6 KB
/
produto.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
<!DOCTYPE html>
<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">
<title>AluraGeek</title>
<!--Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap" rel="stylesheet">
<!--Estilos-->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/cabecalho/cabecalho.css">
<link rel="stylesheet" href="css/cabecalho/cabecalho__btn.css">
<link rel="stylesheet" href="css/cabecalho/cabecalho__busca.css">
<link rel="stylesheet" href="css/cabecalho/cabecalho__logo.css">
<link rel="stylesheet" href="css/produto/produto.css">
<link rel="stylesheet" href="css/produto/produto__img.css">
<link rel="stylesheet" href="css/produto/produto__conteudo.css">
<link rel="stylesheet" href="css/produto/produto__titulo.css">
<link rel="stylesheet" href="css/similares/similares__principal.css">
<link rel="stylesheet" href="css/similares/similares__titulo.css">
<link rel="stylesheet" href="css/similares/similares__cabecalho.css">
<link rel="stylesheet" href="css/card/card.css">
<link rel="stylesheet" href="css/card/card__link.css">
<link rel="stylesheet" href="css/card/card__produto.css">
<link rel="stylesheet" href="css/card/card__valor.css">
<link rel="stylesheet" href="css/contato/contato__logo.css">
<link rel="stylesheet" href="css/contato/contato.css">
<link rel="stylesheet" href="css/contato/contato__cabecalho.css">
<link rel="stylesheet" href="css/contato/contato__link.css">
<link rel="stylesheet" href="css/contato/contato__msg.css">
<link rel="stylesheet" href="css/contato/contato__btn.css">
<link rel="stylesheet" href="css/contato/contato__campo.css">
<link rel="stylesheet" href="css/contato/contato__main.css">
</head>
<body>
<header class="cabecalho container">
<a href="index.html">
<div class="cabecalho__logo"></div>
</a>
<div class="cabecalho__btn">
<a href="login.html"><button class="cabecalho__btn--botao">Login</button></a>
</div>
<div class="cabecalho__busca">
<input class="campo__busca" type="text" placeholder="O que deseja encontrar?">
<div class="icone__busca">
</div>
</div>
</header>
<section class="produto container">
<img class="produto__img" src="" alt="">
<div class="produto__conteudo">
<h1 class="produto__titulo"></h1>
<h3 class="produto__preco"></h3>
<p class="produto__descricao" produto-descricao></p>
</div>
</section>
<section class="similares container">
<header class="similares__cabecalho">
<h1 class="similares__titulo">Produtos similares</h1>
</header>
<main class="similares__principal">
</main>
</section>
<section class="contato container">
<header class="contato__cabecalho">
<div class="contato__logo"></div>
<nav class="contato__link">
<ul class="link__lista">
<li class="link_item">Quem somos nós</li>
<li class="link_item">Política de privacidade</li>
<li class="link_item">Programa de fidelidade</li>
<li class="link_item">Nossas lojas</li>
<li class="link_item">Quero ser um franqueado</li>
<li class="link_item">Anuncie aqui</li>
</ul>
</nav>
</header>
<main class="contato__main">
<h2 class="contato__titulo">Fale conosco</h2>
<form action="#" class="contato__form">
<div class="contato__campo">
<label for="nome">Nome</label>
<input type="text" id="nome">
</div>
<textarea placeholder="Escreva sua mensagem" id="contato__msg" cols="40" rows="5"></textarea>
<button class="contato__btn">Mensagem</button>
</form>
</main>
</section>
<script type=module src="js/carregarProduto.js"></script>
<script src="js/preencherContainer.js"></script>
<script src="js/selecionarCategoria.js"></script>
</body>
<footer>
<p>Desenvolvido por Jhonatan W Camêlo<br>2022</p>
</footer>
</html>