-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (42 loc) · 1.41 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
<!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'>
<!-- GOOGLE FONTS -->
<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=Poppins:wght@300;500;800&display=swap" rel="stylesheet" />
<!-- FAVICON -->
<link rel='shortcut icon' href='./assets/favicon.png' type='image/png'>
<!-- CSS -->
<link rel='stylesheet' href='./css/style.css'>
<!-- JAVASCRIPT -->
<script src='./js/main.js' defer></script>
<title>Pokémon | Bruno Henrique</title>
</head>
<body>
<header>
<a href="#">
<img src="./assets/pokeball.png" alt="Imagem de uma pokebola" class="logo">
</a>
<button id="botao-alterar-tema">
<img src="./assets/sun.png" alt="imagem do sol" class="imagem-botao">
</button>
</header>
<main>
<ul class="listagem-pokemon" id="lista-pokemon">
</ul>
<div class="paginacao">
<button id="carregarMaisBotao" type="button">
Carregar Mais
</button>
</div>
</main>
<!-- JAVASCRIPT POKEAPI -->
<script src="./js/poke-api/pokemon-model.js"></script>
<script src="./js/poke-api/poke-api.js"></script>
<script src="./js/poke-api/lista-pokemon.js"></script>
</body>
</html>