-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategoria.html
80 lines (73 loc) · 3.25 KB
/
categoria.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
<!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">
<link rel="icon" href="img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="css/produtos.css">
<title>AluraGeek | Produtos</title>
</head>
<body>
<header class="header__container">
<a href="index.html" aria-label="link para a página inicial">
<img src="img/logo.png" alt="Logo da Alura Geek" class="header__logo">
</a>
<input type="search" class="header__searchbox" placeholder="O que deseja encontrar?">
<!-- <button class="button--secondary header__login">Login</button> -->
<img src="img/search.png" alt="Botão de pesquisa" class="header__search-icon">
</header>
<main class="products__catalog">
<!-- Products are displayed using javascript -->
</main>
<footer class="footer__container">
<img src="img/logo.png" alt="Logo da Alura Geek" class="footer__logo">
<ul class="footer__list">
<li class="footer__item">
<a href="#" class="footer__anchor">Quem somos nós</a>
</li>
<li class="footer__item">
<a href="#" class="footer__anchor">Política de privacidade</a>
</li>
<li class="footer__item">
<a href="#" class="footer__anchor">Programa de fidelidade</a>
</li>
<li class="footer__item">
<a href="#" class="footer__anchor">Nossas lojas</a>
</li>
<li class="footer__item">
<a href="#" class="footer__anchor">Quero ser franqueado</a>
</li>
<li class="footer__item">
<a href="#" class="footer__anchor">Anuncie aqui</a>
</li>
</ul>
<section class="contact">
<h2 class="contact__title">Fale Conosco</h2>
<form class="contact__form">
<div class="input__wrapper">
<label for="name" class="input__field--label">Nome</label>
<input type="text" id="name" class="input__field--content input__text" maxlength="40" required>
<span class="input__validation-message"></span>
</div>
<div class="input__wrapper">
<textarea name="message" id="message" class="input__textfield"
placeholder="Escreva sua mensagem" maxlength="120" required></textarea>
<span class="input__validation-message"></span>
</div>
<p class="form__message"></p>
<button class="contact__button button--primary">Enviar mensagem</button>
</form>
</section>
</footer>
<section class="developer">
<p>Desenvolvido por</p>
<p><a href="https://github.com/zingarelli" class="developer__contact">Matheus Ricardo Uihara Zingarelli</a></p>
<p>2022</p>
</section>
<script src="js/header.js"></script>
<script type="module" src="js/categoria.js"></script>
<script type="module" src="js/contato.js"></script>
</body>
</html>