-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (125 loc) · 4.33 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
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
124
125
126
127
128
129
130
<!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/components/header.css" />
<link rel="stylesheet" href="./assets/components/highlight.css" />
<link rel="stylesheet" href="./assets/components/products.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 >
<section class="highlight">
<div class="wrapper">
<h2 class="highlight_title">Dezembro Promocional</h2>
<p class="highlight_subtitle">
Produtos selecionados com 33% de desconto
</p>
<a href="#Console">
<button class="button highlight_button">Ver Consoles</button>
</a>
</div>
</section>
<section class="geral_products wrapper">
<div class="section"></div>
</section>
<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
data-contact="name"
type="text"
name="nome"
id="nome"
class="input input_nome"
placeholder="nome"
required
maxlength="40"
/>
<label for="nome">Nome</label>
<span class="contact_error_message">Este campo não é válido</span>
</div>
<div class="label_float">
<textarea
data-contact="text"
name="mensagem"
id="msg"
cols="5"
rows="5"
placeholder="Escreva sua Mensagem"
class="textarea textarea_msg"
required
maxlength="120"
></textarea>
<span class="contact_error_message">Este campo não é válido</span>
</div>
<button type="submit" class="button">Enviar Mensagem</button>
</form>
</div> -->
</section>
</main>
<footer>
Desenvolvido por <a href="https://github.com/MatheusBAlves" target="_blank">Matheus Alves</a>
<br />
2022
</footer>
<script type="module" src="./controllers/product-controller.js"></script>
<script src="./assets/js/contact.js"></script>
<script type="module" src="./assets/js/validacoes/app.js"></script>
</body>
</html>
<!-- TODO para aparecer os produtos, execute "json-server --watch db.json" -->