-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 loc) · 1.95 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokedex</title>
</head>
<body>
<div class="pokedex">
<header class="pokedex-header">
<nav class="pokedex">
<img src="" class="pokebola" alt="pokebola" />
<img src="" class="pokedexIcon" alt="pokedexIcon" />
</nav>
<div class="search-bar">
<input
type="text"
class="search-input"
placeholder="Search Pokemon"
/>
<button class="search-button">Search</button>
</div>
</header>
<main>
<div class="pokemon-image">
<h1 class="pokemon-name"></h1>
<img src="" class="pokeImg" alt="pokeImg" />
</div>
<div class="pokemon-details">
<div class="detail">
No:
<p class="pokemon-No">006</p>
</div>
<div class="detail">
Level:
<p class="pokemon-level">100</p>
</div>
<div class="detail">
Type:
<p class="pokemon-type">FIRE</p>
</div>
<div class="detail">
Ability:
<p class="pokemon-ability">FLAMES</p>
</div>
<div class="detail">
Height:
<p class="pokemon-height">1.7 M</p>
</div>
<div class="detail">
Weight:
<p class="pokemon-weight">90.5 KG</p>
</div>
</div>
</main>
</div>
<footer>
<div class="other-pokemon">
<h1>OTHERS</h1>
<img src="" alt="other pokemon 1" class="PokeOthers" />
<img src="" alt="other pokemon 2" class="PokeOthers" />
<img src="" alt="other pokemon 3" class="PokeOthers" />
<img src="" alt="other pokemon 4" class="PokeOthers" />
</div>
</footer>
<script src="bundle.js"></script>
</body>
</html>