-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlivros.html
138 lines (122 loc) · 4.4 KB
/
livros.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset=UTF-8/>
<title>Biblioteca Fantalistica</title>
<link rel="stylesheet" type="text/css" href="_css\estilo.css"/>
</head>
<body>
<div id="interface">
<header id="cabecalho">
<hgruoup>
<h1>Ficçalistica</h1>
<h2>O mundo que não conhecemos</h2>
</hgruoup>
<!-- Inicio do caroucel -->
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
width: 70%;
margin: auto;
height: 300px;
}
</style>
</head>
<body>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="_imagem\livro.jpg" alt="Biblioteca">
</div>
<div class="item">
<img src="_imagem\book.jpg" alt="Viva">
</div>
<div class="item">
<img src="_imagem\livros.jpg" alt="A">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- fim do carousel -->
<nav id="menu">
<h1>Menu Principal</h1>
<ul type="disc">
<li><a href="ficcalistica.html">Home</a></li>
<li><a href="autores.html">Autores</a></li>
<li><a href="livros.html">Livros</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</header>
<section id="corpo">
<header id="cabecalho2">
<h2>Livros<h2>
</header>
<header id="letras3">
<h3 style="text-align: left;">Jogos Vorazes - Jogos Vorazes - Vol. 1</h3>
<figur id="foto">
<img src="_imagem\tn_jogos_vorazes.png"/>
</figure>
<li><a href="jogosvorazes.html"> MAIS DETALHES</a></li>
<h3 style="text-align: left;">A Guerra Dos Tronos - As Crônicas de Gelo e Fogo</h3>
<figure>
<img src="_imagem\tn_a_guerra_dos_tronos.png"/>
</figure>
<li><a href="aguerradostronos.html"> MAIS DETALHES</a></li>
<h3 style="text-align: left;">Eragon - Trilogia da Herança I</h3>
<figure>
<img src="_imagem\tn_Eragon.png"/>
</figure>
<li><a href="eregon.html"> MAIS DETALHES</a></li>
</section>
<br> <br> <br>
<header id="letras2">
<aside id="lateral">
<h3 style="text-align: left;">A Mão Esquerda de Deus</h3>
<figure>
<img src="_imagem\tn_amaoesquerdadedeus.png"/>
</figure>
<li><a href="amaoesquerdadedeus.html"> MAIS DETALHES</a></li>
<h3 style="text-align: left;">Harry Potter e A Pedra Filosofal 1</h3>
<figure>
<img src="_imagem\tn_harrypoter.png"/>
</figure>
<li><a href="harrypotter.html"> MAIS DETALHES</a></li>
<h3 style="text-align: left;">A Guerra Dos Mundos</h3>
<figur id="foto">
<img src="_imagem\tn_a-guerra-dos-mundos.png"/>
</figure>
<li><a href="aguerradosmundos.html"> MAIS DETALHES</a></li>
</header>
</aside>
<footer id="rodape">
<p>Copyrigth © 2017 - by Andréia Assis <br/>
<a href="https://www.linkedin.com/in/andreia-assis-a2289977" target="_blank"/><img src="_imagem\link.jpg" height="30" width="40"/></a> | <a href="https://github.com/AndreiaAssis" target="_blank"><img src="_imagem\github.png" height="30" width="40"/></a> | <a href="https://www.facebook.com/andreia.crepalde" target="_blank"><img src="_imagem\facebook.png" height="30" width="40"/></a> | <a href="https://www.instagram.com/andreia_a.assis/" target="_blank"><img src="_imagem\instagram.jpg" height="30" width="40"/></a></p>
</p>
</footer>
</div>
</body>
</html>