forked from digitalinnovationone/js-developer-pokedex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
90 lines (84 loc) · 3.34 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
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
<!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>Pokedex - About</title>
<!--Normalize CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--Fonte roboto-->
<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=Roboto:wght@100;300;500;700&display=swap" rel="stylesheet">
<!-- Nosso css -->
<link rel="stylesheet" href="./assets/css/global.css">
<link rel="stylesheet" href="./assets/css/pokedex.css">
<link rel="stylesheet" href="./assets/css/details.css">
</head>
<body>
<section id="paginaDetalhes" class="content details">
<div class="parteDeCima grass">
<header>
<a href="index.html"><img src="./assets/images/left-arrow-svgrepo-com.svg" alt="voltar" id="flecha"></a>
</header>
<div class="infoGeral">
<span class="number">#001</span>
<h1 class="nome">bulbasaur</h1>
<ol class="types">
<li class="grass type">Grass</li>
<li class="poison type">Poison</li>
</ol>
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/dream-world/1.svg"
alt="bulbasaur">
</div>
</div>
<div class="parteDeBaixo">
<div class="about">
<h3>About</h3>
<table>
<tr>
<th class="caracteristica">Species</th>
<th>Seed</th>
</tr>
<tr>
<th class="caracteristica">Height</th>
<th>0.70 m</th>
</tr>
<tr>
<th class="caracteristica">Weight</th>
<th>6.9 kg</th>
</tr>
</table>
<h3>Breeding</h3>
<table>
<tr>
<th class="caracteristica">Gender</th>
<th> m 87.5% f 12.5%</th>
</tr>
<tr>
<th class="caracteristica">Egg Groups</th>
<th>Monster</th>
</tr>
<tr>
<th class="caracteristica">Egg Cycle</th>
<th>Grass</th>
</tr>
</table>
</div>
</div>
</section>
<!-- <table>
<tr>
<th class="caracteristica">Defense</th>
<th>49</th>
<th><div class="statsBar" style="width: calc((49/100)*100px);" ></div></th>
</tr>
</table> -->
</body>
<script src="./assets/js/pokemon-model.js"></script>
<script src="./assets/js/details.js"></script>
<!-- <script src="./assets/js/main.js"></script> -->
</html>