-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="script.js"></script>
<!-- CSS links -->
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>PokeAPI test</h1>
<div id="button-random-pokemon">
<button class="button-random-pokemon" onclick="randomPokemon()">Random Pokemon !!!</button>
</div>
<div id="pokemon-info">
<h2>Pokemon: <span id="pokemon"></span></h2>
<p>Height: <span id="height"></span></p>
<p>Weight: <span id="weight"></span></p>
<p>Abilities: <span id="abilities"></span></p>
<p>Sprite:</p>
<img id="pokemon-image" src="" alt="randomPokemon">
<p>Official Artwork:</p>
<img id="pokemon-image2" src="" alt="randomPokemon">
</div>
<footer>
© 2023 Todos os direitos reservados |
<span>
Feito por Jorge Enrique
</span>
</footer>
</body>
</html>