-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
163 lines (161 loc) · 5.45 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!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" />
<meta
name="description"
content="DRKTeck - Project from ONE Education and Alura."
/>
<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"
/>
<link
href="assets/img/hero.jpg"
rel="preload"
as="image"
type="image/jpg"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<title>DRKTeck</title>
</head>
<body>
<div class="app">
<header class="header">
<div class="row header__container">
<h1 class="header__title" aria-label="Alura Geek">
<a href="index.html">
<img
class="header__logo"
aria-label="Alura Geek"
src="./assets/img/Logo2.svg"
alt="Logo alura geek"
/>
</a>
</h1>
<a class="header__login-button" href="auth.html">Entrar</a>
<div class="header__search">
<input
class="search"
id="search-input"
type="search"
placeholder="O que você deseja encontrar?"
/>
<button
id="search-button"
aria-label="Search"
class="button-search"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"
/>
</svg>
</button>
</div>
</div>
<div class="hero">
<div class="row hero__container">
<hgroup>
<h2 class="hero__title">Dezembro Promocional</h2>
<h3 class="hero__subtitle">
Productos selecionados com 33% de desconto
</h3>
</hgroup>
<a class="button button-primary hero__button" href="#consoles"
>Ver Consoles</a
>
</div>
</div>
</header>
<main id="main"></main>
<footer class="footer">
<div class="footer__info">
<div class="row info-container">
<!-- about -->
<section class="about">
<div class="about__container">
<h2 class="about__title">
<img
aria-label="Alura Geek"
src="./assets/img/Logo2.svg"
alt="Logo alura geek"
class="about__logo"
/>
</h2>
<ul class="about__links">
<li class="about__item">
<a class="about__link" href="#">Quem somos nós</a>
</li>
<li class="about__item">
<a class="about__link" href="#">Política de privacidade</a>
</li>
<li class="about__item">
<a class="about__link" href="#">Programa de fidelidade</a>
</li>
<li class="about__item">
<a class="about__link" href="#">Nossas lojas</a>
</li>
<li class="about__item">
<a class="about__link" href="#">Quero ser franqueado</a>
</li>
<li class="about__item">
<a class="about__link" href="#">Anuncie aqui</a>
</li>
</ul>
</div>
</section>
<!-- Contact -->
<section class="contact">
<div class="contact__container">
<h2 class="contact__title">Fale conosco</h2>
<form class="contact__form">
<div class="form__control">
<label class="form__label" for="">Nome</label>
<input
class="form__input"
type="text"
placeholder="Seu nome"
/>
</div>
<div class="form__control">
<label class="form__label" for="">Mensagem</label>
<textarea
class="form__input"
rows="5"
placeholder="Escreva sua mensagem"
></textarea>
</div>
<button class="button button-primary" type="submit">
Enviar mensagem
</button>
</form>
</div>
</section>
</div>
</div>
<section class="copyright">
<div class="row">
<h2>Desenvolvido por Darlisson L. Silva</h2>
<p>© 2022</p>
</div>
</section>
</footer>
</div>
<script type="module" src="./assets/js/index.js"></script>
<script src="./assets/js/search-handler.js"></script>
</body>
</html>