-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 1.68 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="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">
<meta name="description" content="Proyecto de JavaScript de Paginacion usando la API de PokeApi">
<link rel="icon" type="image/svg+xml" href="./images/pokemonIco.svg" />
<link rel="stylesheet" href="./styles.css">
<script src="./custom.js" defer></script>
<title>Pokemons - Pagination</title>
</head>
<body>
<header>
<!-- <h2>PokeApi Page</h2> -->
<img src="./images/hero.png" alt="PokeApi Paginacion">
<iframe
src="https://ghbtns.com/github-btn.html?user=garu2&repo=PokeApi-Pagination&type=star&count=true&size=large" frameborder="0"
scrolling="0"
width="110"
height="30"
title="GitHub">
</iframe>
<div class="limit">
<p>Por Página</p>
<select id="limit" onchange="changePg(value);">
<option value="40">40</option>
<option value="60">60</option>
<option value="80">80</option>
</select>
</div>
<div class="navigation">
<button onclick="prev()">«</button>
<div class="numbers"></div>
<button onclick="next()">»</button>
</div>
</header>
<section>
<div class="container">
<div class="pokemons"></div>
</div>
</section>
<footer>
<p class="author">🪐 by <a href="https://github.com/garu2" target="_blank">GaryAT</a></p>
</footer>
</body>
</html>