-
Notifications
You must be signed in to change notification settings - Fork 0
/
produto.html
123 lines (113 loc) · 3.71 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
112
113
114
115
116
117
118
119
120
121
122
123
<!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" />
<title>Alura Geek</title>
<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&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./reset.css" />
<link rel="stylesheet" href="./variaveis.css" />
<link rel="stylesheet" href="./assets/add_product.css" />
<link rel="stylesheet" href="./assets/components/inputs.css" />
<link rel="stylesheet" href="./assets/components/header.css" />
<link rel="stylesheet" href="./assets/components/products.css" />
<link rel="stylesheet" href="./assets/components/aboutProduct.css" />
<link rel="stylesheet" href="./assets/components/contact.css" />
<link rel="stylesheet" href="./assets/components/footer.css" />
</head>
<body>
<header>
<nav class="wrapper">
<div class="logo">
<a href="./">
<img src="./assets/logo.png" alt="logo" class="logo_img" />
<p class="logo_text">
<span class="logo_text_blue">Alura</span>Geek
</p>
</a>
</div>
<div class="search_box">
<input
type="text"
class="search"
placeholder="O que deseja encontrar?"
/>
<img src="./assets/lupa.png" alt="" class="box_lupa" />
</div>
<div class="login">
<a href="./login.html">
<button>Login</button>
</a>
</div>
<div class="lupa">
<img src="./assets/lupa.png" alt="" />
</div>
</nav>
</header>
<main>
<div class="section_main">
</div>
<div class="produtos-similares">
<div class="wrapper">
<h3 class="produtos-similares_title">Produtos similares</h3>
<div class="section_products">
</div>
</div>
</div>
<section class="contact">
<div class="wrapper">
<div class="referencia">
<img src="./assets/logo.png" alt="" />
<p><span>Alura</span>Geek</p>
</div>
<div class="links_uteis">
<a href="#">Quem somos nós</a>
<a href="#">Política de Privacidade</a>
<a href="#">Programa de fidelidade</a>
<a href="#">Nossas lojas</a>
<a href="#">Quero ser franqueado</a>
<a href="#">Anuncie aqui</a>
</div>
<form class="form">
<p>Fale conosco</p>
<div class="label_float">
<input
type="text"
name="nome"
id="nome"
class="input input_nome"
placeholder="nome"
required
/>
<label for="nome">Nome</label>
</div>
<div class="label_float">
<textarea
name="mensagem"
id="msg"
cols="5"
rows="5"
placeholder="Escreva sua Mensagem"
class="textarea textarea_msg"
required
></textarea>
</div>
<button type="submit" class="button">Enviar Mensagem</button>
</form>
</div>
</section>
</main>
<footer>
Desenvolvido por <a href="">Matheus Alves</a>
<br />
2022
</footer>
<script type="module" src="./controllers/productDetail.js"></script>
</body>
</html>