generated from UCC-LabCompu2/proyecto2022
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
99 lines (83 loc) · 2.96 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
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Pokedex</title>
<meta content="Augusto Escudero y Segundo Sabor" name="autor">
<meta content="Pokedex" name="descripcion">
<meta content="pokemon, pokedex, poke" name="palabras-principales">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/Favicon/favicon.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Koulen&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="container logo-nav-container ">
<a href="index.html" class="logo"> <img src="Imagenes/Pokeball2.png" alt="pokeball"></a>
<nav class="navigation">
<ul>
<li><a href="index.html">
Inicio
</a></li>
<li><a href="help.html">
Ayuda
</a></li>
</ul>
</nav>
</div>
</header>
<div class="barra">
<input type="text" placeholder="Buscar">
<div class="btn">
<i class="fa fa-search"></i>
</div>
</div>
<div class="container-card">
<div class="card">
<figure>
<img src="Imagenes/Imagenes%20pokemons/Gastly.jpg" alt="ghastly">
</figure>
<div class="contenido-card">
<a href="gastly.html"><h4>N.92 Ghastly</h4></a>
<p>Tipo: Fantasma / Veneno</p>
</div>
</div>
<div class="card">
<figure>
<img src="Imagenes/Imagenes%20pokemons/Hunter.png" alt="hunter">
</figure>
<div class="contenido-card">
<a href="hunter.html"><h4>N.93 Hunter</h4></a>
<p>Tipo: Fantasma Veneno</p>
</div>
</div>
<div class="card">
<figure>
<img src="Imagenes/Imagenes%20pokemons/Gengar.png" alt="gengar">
</figure>
<div class="contenido-card">
<a href="gengar.html"><h4>N.94 Gengar</h4></a>
<p>Tipo: Fantasma Veneno</p>
</div>
</div>
</div>
<main class="main">
</main>
<footer class="footer">
<div class="logo-footer">
<a href="https://www.pokemon.com/el/pokedex/" class="pokelogo">
<img src="Imagenes/logo%20pokemon.png" alt="logopokemon">
</a>
</div>
<div>
©2022 Pokémon. ©1995 - 2022 Nintendo/Creatures Inc./GAME FREAK inc. TM, ®Nintendo.
</div>
<div>
Contactos: 211349@ucc.edu.ar / 2113511@ucc.edu.ar
</div>
</footer>
</body>
</html>