-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (61 loc) · 2.25 KB
/
index.html
File metadata and controls
69 lines (61 loc) · 2.25 KB
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="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">
<link rel="stylesheet" href="./img/pokedex.ico">
<link rel="stylesheet" href="./css/styles.css">
<title>pokedex</title>
</head>
<body>
<header class="header">
<figure class="header__figure">
<img src="./img/pokeball.png" alt="Logo Pokedex">
</figure>
<p class="header__title">POKÉDEX_</p>
</header>
<main class="main">
<section class="section">
<article class="section__pokemon">
<div class="section_pokemon-name">
<figure class="section__pokemon-element">
<img src="./img/water.png" alt="Element Water">
</figure>
<h2 class="section__pokemon-title">GRENINJA ASH</h2>
</div>
<figure class="section__pokemon-img">
<img src="./img/greninja.png" alt="greninja">
</figure>
</article>
<article class="section__information">
<span>NO. <p>658</p></span>
<span>LEVEL <p>36</p></span>
<span>TYPE <p>WATER</p></span>
<span>HABILITY <p>STRONG AFFECTION</p></span>
<span>HEIGHT <p>1.5 m</p></span>
<span>WEIGHT <p>40 kg</p></span>
</article>
</section>
</main>
<footer>
<!-- container for the card -->
<section class="footer">
<p class="footer__text">OTHERS</p>
<!-- others pokemos -->
<figure class="footer__figure">
<img src="./img/mew.png" alt="Pokemon mew">
</figure>
<figure class="footer__figure">
<img src="./img/Lucario.png" alt="Pokemon Lucario">
</figure>
<figure class="footer__figure">
<img src="./img/pikachu.png" alt="Pokemon Pikachu">
</figure>
<figure class="footer__figure">
<img src="./img/Rayquaza.png" alt="Pokemon Rayquaza">
</figure>
</section>
</footer>
</body>
</html>