-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (87 loc) · 3.68 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
<!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="icon"
type="image/jpg"
sizes="32x32"
href="imagenes/logo.png"
/>
<title>Kitabu</title>
<link rel="stylesheet" href="estilos.css" />
</head>
<body>
<nav>
<div id="logo">
<img
src="imagenes/logo.png"
alt="Logo de Kitabu"
title="Logo de Kitabu"
/>
</div>
<a class="botonNav" href="#" target="_blank">Categorias</a>
<a class="botonNav" href="#" target="_blank">Nosotros</a>
<a class="botonNav" href="#" target="_blank">Contacto</a>
</nav>
<header>
<a class="botonNovedades" href="#" target="_blank"
>Descubre las novedades para el próximo Sant Jordi
</a>
</header>
<section id="gridContenedor">
<a class="linkLibros" href="./libro1.html" target="_blank">
<article class="item1">
<img id="imagenLibro" src="imagenes/libro-1.jpg" alt="" />
<p class="tituloLibro">Rábia</p>
<p class="autorLibro">Sebastian Alzamora</p>
</article>
</a>
<a class="linkLibros" href="#" target="_blank">
<article class="item1">
<img id="imagenLibro" src="imagenes/libro-2.jpg" alt="" />
<p class="tituloLibro">El cuiner d'Alcyon</p>
<p class="autorLibro">Andrea Camilleri</p>
</article>
</a>
<a class="linkLibros" href="#" target="_blank">
<article class="item1">
<img id="imagenLibro" src="imagenes/libro-3.jpg" alt="" />
<p class="tituloLibro">Palmeras Salvajes</p>
<p class="autorLibro">William Faulkner</p>
</article>
</a>
<a class="linkLibros" href="#" target="_blank">
<article class="item1">
<img id="imagenLibro" src="imagenes/libro-4.jpg" alt="" />
<p class="tituloLibro">Un Final</p>
<p class="autorLibro">J.P. Sansaloni</p>
</article>
</a>
<a class="linkLibros" href="#" target="_blank">
<article class="item1">
<img id="imagenLibro" src="imagenes/libro-5.jpg" alt="" />
<p class="tituloLibro">Crónica de una muerte anunciada</p>
<p class="autorLibro">Gabriel García Márquez</p>
</article>
</a>
<a class="linkLibros" href="#" target="_blank">
<article class="item1">
<img id="imagenLibro" src="imagenes/libro-6.jpg" alt="" />
<p class="tituloLibro">Cien años de soledad</p>
<p class="autorLibro">Gabriel García Márquez</p>
</article>
</a>
</section>
<footer>
<p class="nombreFooter">Kitabu</p>
<a class="botonFooter" href="#" target="_blank">Aviso Legal</a>
<a class="botonFooter" href="#" target="_blank">Protección Datos</a>
<a class="botonFooter" href="#" target="_blank"
>Condiciones de Uso</a
>
</footer>
</body>
</html>