-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokédex</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="pokedex">
<div id="maps">
<div id="kantoHover"></div>
<p id="instructions">click on a map to load the pokémons native of that region</p>
<img class="Kanto" src="./images/Kanto.png" alt="map of the Kanto region in pokémon FireRed">
<p id="kantoText">KANTO REGION</p>
<div id="johtoHover"></div>
<img class="Johto" src="./images/Johto.png" alt="map of the Johto region in pokémon HeartGold">
<p id="johtoText">JOHTO REGION</p>
</div>
<h1>Regional Pokedex</h1>
<div id="liste">
<div id="placeholder">
<img src="./images/64885.png" alt="">
</div>
<div id="pokemons"></div>
</div>
</section>
<footer class="FireRed">
<p>
All information are from <a href="https://pokeapi.co/" target="_blank">PokéAPI</a><br>
The font used is <a href="https://www.dafont.com/fr/pkmn-mystery-dungeon.font" target="_blank">PKMN Mystery Dungeon</a><br>
the GitHub repository is accessible <a href="https://github.com/onsibuno/pkmnDex" target="_blank">here</a>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>