-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (37 loc) · 1.41 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
<!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" />
<title>Pokemons API's</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="header sticky-top">
<h1 class="tittle"><a href="index.html" class="tittle-link">Pokedex</a></h1>
</div>
<div class="pokemon-container">
</div>
<nav class="pagination" aria-label="...">
<ul class="pagination">
<li class="page-item" id="previous">
<a class="page-link" href="#" tabindex="-1">Anterior</a>
</li>
<li class="page-item" id="next">
<a class="page-link" href="#">Siguiente</a>
</li>
</ul>
</nav>
<div id="spinner" class="spinner-border text-light" role="status">
<span class="visually-hidden">Loading...</span>
</div>
<script src="main.js"></script>
<!-- <script src="ejercicios.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"></script>
</body>
</html>