-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (68 loc) · 3.1 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="es">
<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">
<title>POKEMON_Compañeros</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<header class="header">
<section class="title">
<figure class="header_figure">
<img src="https://cdn-icons-png.flaticon.com/512/189/189015.png?w=826&t=st=1677085867~exp=1677086467~hmac=7d5de8a86054ca3ed6e3402163ac8d85ae5703ae3b4da02f8a94d0d86501560f"
alt="logo pokemon">
<p>POKEDEX_</p>
</figure>
<input type="text" placeholder="Buscar Pokemon" id="searchInput">
<span class="material-symbols-outlined">search</span>
<div class="container_pokemons">
</div>
</section>
</header>
<main class="main">
<section class="title_main">
<figure>
<img src="https://cdn-icons-png.flaticon.com/512/1016/1016736.png" alt="icono pokemon">
</figure>
<p>Miraidon</p>
</section>
<figure class="main_figure">
<img src="https://scarletviolet.pokemon.com/_images/pokemon/miraidon/miraidon-detail.webp"
alt="cyclizar pokemon">
</figure>
<section class="main_table">
<table class="main__table">
<tr>
<td><span class="caracterisiticas_table">N°</span> <br> <span class="info_avatar">011</span></td>
<td><span class="caracterisiticas_table"> NIVEL </span> <br><span class="info_avatar">83</span></td>
</tr>
<tr>
<td><span class="caracterisiticas_table"> TIPO </span> <br><span class="info_avatar">Eléctrico y
Dragon</span></td>
<td><span class="caracterisiticas_table">HABILIDAD</span> <br><span class="info_avatar">Motor
Hadronico</span> </td>
</tr>
<tr>
<td><span class="caracterisiticas_table"> ALTURA </span><br> <span class="info_avatar">3,5 m</span>
</td>
<td><span class="caracterisiticas_table"> PESO </span> <br><span class="info_avatar">240 kg</span>
</td>
</tr>
</table>
</section>
</main>
<footer class="footer">
<p>OTROS</p>
</footer>
<script src="./script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</body>
</html>