-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.99 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta metacharset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AluraBooks</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" />
</head>
<header class="header">
<h1><a href="Pagina-inicial/pagina-inicial.html"><img src="imagens/Logo-1.png"/></a></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-indisponiveis" href="#" id="btnLivrosIndisponiveis" value="indisponivel">LIVROS INDISPONÍ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"></section>
<section id="valor_total_livros_disponiveis"></section>
<footer class="rodape">
<p>Alura - Mergulhe em tecnologia</p>
</footer>
<script src="arc-js/main.js"></script>
<script src="arc-js/forEach.js"></script>
<script src="arc-js/map.js"></script>
<script src="arc-js/filter.js"></script>
<script src="arc-js/sort.js"></script>
<script src="arc-js/reduce.js"></script>
</body>
</html>