-
Notifications
You must be signed in to change notification settings - Fork 0
/
detalhes.html
43 lines (43 loc) · 1.91 KB
/
detalhes.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
<!DOCTYPE html>
<html lang="en">
<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="stylesheet" href="/assets/css/global.css">
<link rel="stylesheet" href="/assets/css/pokedex.css">
<link rel="stylesheet" href="/node_modules/normalize.css/normalize.css">
<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=Fuzzy+Bubbles&family=Roboto:wght@100;300;500;700&display=swap" rel="stylesheet">
<title>Detalhes Pokemon</title>
</head>
<body>
<section class="content">
<div class="pokemon">
<ol>
<li class="icons">
<p><i class="fa-solid fa-arrow-left"></i></p>
<p><i class="fa-regular fa-heart"></i></p>
</li>
<li class="detalhe">
<span class="number">pokemon.number</span>
<span class="name">pokemon.name</span>
<div class="detail">
<ol class="types">
<li class="type ${type}">type</li>
</ol>
</div>
<img class="imgdetalhe" src="" alt="imagem do pokemon"/>
</li>
</ol>
</div>
</section>
<footer>
<p class="rodape">2022 - Exemplo de consumo de API com JavaScript - <span>Fernando Gropp ©</span></p>
</footer>
<!-- link para a galeria de icones da fontawesome -->
<script src="https://kit.fontawesome.com/e3adcc10cd.js" crossorigin="anonymous"></script>
<script src="/assets/js/pokemon-model.js"></script>
<script src="/assets/js/poke-api.js"></script>
<script src="/assets/js/main.js"></script>
</body>
</html>