-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpokemon-search.app.html
50 lines (45 loc) · 1.84 KB
/
pokemon-search.app.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>womzil's tools</title>
<link rel="icon" type="image/x-icon" href="https://donutparty.top/images/donut.ico">
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="./styles/basic-layout.css" />
<link rel="stylesheet" href="./styles/pokemon-search-app.css" />
<script src="https://kit.fontawesome.com/c07e0218a9.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>Pokémon Search App</h1>
</header>
<main>
<label for="search-input">Please, input name or ID to search.</label>
<input id="search-input" name="search-input" required type="text" />
<button id="search-button">Search</button>
<div id="pokemon">
<img id="sprite" alt="Sprite" />
<ul>
<li>Name: <span id="pokemon-name"></span></li>
<li>ID: <span id="pokemon-id"></span></li>
<li>Weight: <span id="weight"></span></li>
<li>Height: <span id="height"></span></li>
<li>Types: <ul id="types"></ul>
</li>
<li>HP: <span id="hp"></span></li>
<li>Attack: <span id="attack"></span></li>
<li>Defense: <span id="defense"></span></li>
<li>Special attack: <span id="special-attack"></span></li>
<li>Special defense: <span id="special-defense"></span></li>
<li>Speed: <span id="speed"></span></li>
</ul>
</div>
</main>
<footer>
<span id="display-mode-button" class="fa-regular fa-sun"></span>
<a href="https://github.com/womzil">Created by womzil</a>
</footer>
<script src="./scripts/pokemonSearchApp.js"></script>
<script src="./scripts/darkMode.js"></script>
</body>
</html>