-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (106 loc) · 2.46 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
<!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>AluraLivros</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css" />
<script defer type="module" src="scripts/main.js"></script>
</head>
<header class="header">
<h1><img src="Logo-1.png" /></h1>
</header>
<body>
<section class="banner"></section>
<nav class="wrap">
<ul class="nav">
<li>
<button
class="btn btn-front"
href="#"
id="btnFiltrarLivrosFront"
value="front-end"
>
LIVROS DE FRONT-END
</button>
</li>
<li>
<button
class="btn btn-back"
href="#"
id="btnFiltrarLivrosBack"
value="back-end"
>
LIVROS DE BACK-END
</button>
</li>
<li>
<button
class="btn btn-dados"
href="#"
id="btnFiltrarLivrosDados"
value="dados"
>
LIVROS DE DADOS
</button>
</li>
<li>
<button
class="btn btn-disponiveis"
href="#"
id="btnLivrosDisponiveis"
value="disponivel"
>
LIVROS DISPONÍVEIS
</button>
</li>
<li>
<button
class="btn btn-ordenacao"
href="#"
id="btnOrdenarPorPreco"
>
ORDENAR POR PREÇO
</button>
</li>
</ul>
</nav>
<section class="livros wrap" id="livros">
<!-- livro template
<div class="livro">
<img
class="livro__imagens"
src="imagens/Cangaceiro-Javascript.png"
alt="Capa do livro Cangaceiro JavaScript"
/>
<h2 class="livro__titulo">
Cangaceiro JavaScript: Uma aventura no sertão da programação
</h2>
<p class="livro__descricao">Flávio Almeida</p>
<p class="livro__preco" id="preco">R$29,90</p>
<div class="tags">
<span class="tag">Front-end</span>
</div>
</div> -->
</section>
<section id="valor_total_livros_disponiveis">
<div class="livros__disponiveis">
<p>
Todos os livros disponíveis por R$
<span id="valor">299,00</span>
</p>
</div>
</section>
<footer class="rodape">
<p>Alura - Mergulhe em tecnologia</p>
</footer>
</body>
</html>