forked from r-argentina-programa/pokedex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (73 loc) · 2.66 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Pokedex</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="src/index.css">
</head>
<body>
<div class="container">
<h1>Pokedex</h1>
</div>
<div class="container">
<div class="row">
<p>Hay <strong id="total-pokemones">...</strong> pokemones en la pokedex</p>
</div>
<div class="container">
<nav aria-label="Page navigation example">
<ul class="pagination flex-wrap" id="paginador">
<!-- -->
</ul>
</nav>
</div>
<div class="row">
<div class="col-4">
<div class="list-group" id="indice">
<p>Cargando...</p>
<!-- -->
</div>
</div>
<div class="col" id="pokemon">
<p id="ayuda">Seleccioná un pokemon para ver su información</p>
<div class="card" id="pokemon-contenedor">
<div class="card-body">
<h5 class="card-title"><strong id="pokemon-nombre">...</strong> (<strong
id="pokemon-id">...</strong>)</h5>
<img class="card-img" id="pokemon-imagen" src="" alt="Imagen de pokemon"/>
<div id="tipos-contenedor">
<strong>Tipos</strong>
<div id="tipos">
<!-- -->
</div>
</div>
<div id="habilidades-contenedor">
<strong>Habilidades</strong>
<div id="habilidades">
<!-- -->
</div>
</div>
<div id="movimientos-contendor">
<strong>Movimientos</strong>
<table class="table">
<thead>
<tr>
<th scope="col">Movimiento</th>
<th scope="col">Versiones</th>
</tr>
</thead>
<tbody id="movimientos">
<!-- -->
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="src/index.js"></script>
</body>
</html>