-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (115 loc) · 4.35 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="description" content="Dicas para quem ama viajar">
<meta name="keywords" content="travel, trip, viagem, wanderlust, turista, traveller">
<link rel="stylesheet" type="text/css" href="css\estilo_.css" />
<title> É Pra Lá Que Eu Vou </title>
</head>
<body>
<div class ="banner">
<img src="img\logo.png" alt="É Pra Lá Que Eu Vou">
</div>
<div>
<nav>
<ul class="menu">
<li><a href="#">Home</a> </li>
<li><a href="#">Sobre</a>
<ul>
<li><a href="#">Quem Somos</a></li>
<li><a href="equipe.html">Equipe</a></li>
</ul>
</li>
<li><a href="#">Cultura</a>
<ul>
<li><a href="cinema.html">Cinema</a></li>
<li><a href="eventos.html">Eventos</a></li>
<li><a href="#">Música</a></li>
<li><a href="#">Teatro</a></li>
</ul>
</li>
<li><a href="gastronomia.html">Gastronomia</a></li>
<li><a href="#">Educação</a>
<ul>
<li><a href="bolsaestudo.html">Bolsas de Estudo</a></li>
<li><a href="intercambio.html">Intercâmbio</a></li>
</ul>
</li>
<li><a href="#">Viagens</a>
<ul>
<li><a href="agenciaviagem.html">Agências de Viagem </a></li>
<li><a href="#">Destinos</a></li>
<li><a href="#">Fórum</a></li>
</ul>
</li>
</ul>
</nav>
</div>
<h2 style="text-align: center;"> <b> NOTÍCIAS </b> </h2>
<div class="w3-content" style="max-width:800px;position:relative">
<img class="mySlides" src="img\equador.jpg" style="width:100%">
<img class="mySlides" src="img\Hotel.jpg" style="width:100%">
<img class="mySlides" src="img\dentista.jpg" style="width:100%">
<img class="mySlides" src="img\indonesia.jpg" style="width:100%">
<div id="flip"> <font color= "white">Links </font></div>
<a href ="http://www.guiadasemana.com.br/turismo/galeria/para-driblar-a-crise-7-paises-mais-baratos-do-mundo-para-viajar" style="text-decoration:none"><div id="panel"><font color= "white">Para driblar a crise: 7 países baratos que vale a viagem</font></div></a>
<a href ="http://www.guiadasemana.com.br/turismo/galeria/7-praias-paradisiacas-em-angra-dos-reis-que-voce-precisa-conhecer" style="text-decoration:none"><div id="panel2"><font color= "white">7 praias paradisíacas em angras dos reis</font></div></a>
<a href ="http://www.guiadasemana.com.br/turismo/galeria/sem-visto-nem-passaporte-9-paises-para-viajar-so-com-rg" style="text-decoration:none"><div id="panel3"><font color= "white"> Sem visto: 9 países para viajar só com RG</font></div></a>
<a class="w3-btn-floating" style="position:absolute;top:45%;left:320px" onclick="plusDivs(-1)">◄</a>
<a class="w3-btn-floating" style="position:absolute;top:45%;right:-383px" onclick="plusDivs(1)">►</a>
<br>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#flip").click(function(){
$("#panel").slideToggle("slow");
$("#panel2").slideToggle("slow");
$("#panel3").slideToggle("slow");
});
});
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length) {slideIndex = 1}
if (n < 1) {slideIndex = x.length} ;
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex-1].style.display = "block";
}
</script>
</div> </div>
<br><br>
<footer id ="main-footer">
<div id = "authors">
<p>
Todos os direitos reservados ®
<br />
<br />
Jade Nogueira Costa
<br />
Kelly Ortiz Figueiredo
<br />
Rafaela Larissa Guimarães dos Santos
</p>
</div>
<div id = "redes-sociais">
<p> Siga-nos nas redes sociais: </p>
<nav>
<a href="https://www.facebook.com/epralaqueeuvoou/?fref=ts"><img src="img\Facebook.png" alt="Facebook"></a>
<a href="https://www.Twitter.com/"><img src="img\Twitter.png" alt="Twitter"></a>
<a href="https://www.youtube.com/"><img src="img\Youtube.png" alt="Youtube"></a>
<a href="https://www.tumblr.com/"><img src="img\Tumblr.png" alt="Tumblr"></a>
</nav>
</div>
</footer>
<br />
</body>
</html>