-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.html
61 lines (48 loc) · 2.13 KB
/
details.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
<!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">
<meta http-equiv="Permissions-Policy" content="interest-cohort=()">
<title>Pokedex | BY BRENDA-A-S</title>
<link rel="shortcut icon" href="assets/imgs/favicon.png" type="image/x-icon">
<!-- css -->
<link rel="preload" href="./assets/css/styles.min.css" as="style">
<link rel="stylesheet" href="assets/css/styles.min.css">
<!-- font roboto -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap" as="style">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header-bg fadeIn" aria-label="Cabeçalho">
<div class="header container">
<a href="index.html" class="logo">
<img src="assets/imgs/header/pokeball.svg" width="32" height="32" alt="Logo Pokeball">
</a>
<nav aria-label="primária" class="fadeIn">
<ul class="header-menu">
<li><a href="index.html">Início
</a>
</li>
<li><a href="details.html">
Pokemons
</a>
</li>
</ul>
</nav>
</div>
</header>
<main class="content" aria-label="Detalhes do Pokémon">
<section id="loadPokemon" aria-label="Pokemon"></section>
</main>
<footer class="footer container fadeIn" aria-label="Rodapé">
<h3>Criado por <a href="https://www.instagram.com/brenda_a_s_dev/" target="_blank">@brenda-a-s-dev</a>.</h3>
</footer>
<script src="assets/js/pokemon-model.js"></script>
<script src="assets/js/poke-api.js"></script>
<script src="assets/js/loadPokemon.js"></script>
</body>
</html>