-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (131 loc) · 6.6 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html>
<head>
<title>Museu Nacional</title>
<meta charset="utf-8">
<!-- Normalize CSS -->
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<!-- Estilo Customizado -->
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<div id="container"> <!--Inicio container-->
<header> <!--Inicio cabecalho-->
<div id="logo">
<h1><a href="">Museu Nacional</a></h1>
</div>
<nav><!--Inicio nav-->
<ul>
<li><a href="">Home</a></li>
<li><a href="">Exposições</a></li>
<li><a href="">Pesquisa</a></li>
<li><a href="">Acervo</a></li>
<li><a href="">Vídeos</a></li>
<li><a href="">Fotos</a></li>
<li><a href="">Contato</a></li>
</ul>
</nav><!--Fim nav-->
</header><!--Fim cabecalho-->
<div id="principal"><!--Inicio principal-->
<div id="conteudo"><!--Inicio conteudo-->
<section id="capa">
<img src="imagens/museu.png">
</section>
<section id="postagens">
<article id="video">
<h3>Vídeo: conheça o museu</h3>
<iframe width="310" height="170" src="https://www.youtube.com/embed/RGUYb-hivrc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</article>
<article id="mapa">
<h3>Mapa: Encontre o museu</h3>
<iframe src="https://www.google.com/maps/d/embed?mid=1QVy1I2lgwCO8PrfeDbSzcx0ptOA&ehbc=2E312F" width="310" height="170"></iframe>
</article>
<article id="exposicoes">
<h3>Exposições</h3>
<ul>
<li>
<a href="">Os assustadores insetos</a>
</li>
<li>
<a href="">O crânio de Luzia, a mulher mais antiga do Brasil</a>
</li>
<li>
<a href="">Preguiça gigante e tigre-dentes-de-sabre</a>
</li>
<li>
<a href="">Platas do Brasil central</a>
</li>
<li>
<a href="">Tereza Cristina: A Imperatriz Arqueóloga</a>
</li>
<li>
<a href="">Arte com Dinossauros - Paleoarte</a>
</li>
<li>
<a href=""><strong>Veja todos (65)</strong></a>
</li>
</ul>
</article>
<article id="historia">
<h3>200 anos de história</h3>
<p>
Numa ponta que avançava sobre o mar, posteriormente conhecida como Ponta do Calabouço, entre as praias de Piaçaba e Santa Luzia, no centro histórico do Rio de Janeiro, os portugueses construíram em 1603 a Fortaleza de Santiago, origem do conjunto arquitetônico que hoje abriga o Museu Histórico Nacional.
</p>
<a href=""><strong>Leia mais</strong></a>
</article>
</section>
</div><!--Fim conteudo-->
<aside><!--Inicio aside-->
<section id="depoimento">
<img src="imagens/depoimento.png">
</section>
<section id="visita"><!--Inicio visita-->
<h4>Faça uma visita</h4>
<form>
<fieldset>
<legend>Selecione uma data</legend>
<label for="data">Data</label>
<input class="campo" type="text" id="data" value="dd/mm/aaaa">
<label for="qtd">Qtd pessoas</label>
<input class="campo" style="width:30px" type="text" id="qtd" value="1">
</fieldset>
<input class="botao" type="submit" value="Verificar disponibilidade">
</form>
</section><!--Fim visita-->
<section id="galeria"><!--Inicio galeria-->
<h4>Galeria de Fotos</h4>
<a href="">
<img src="imagens/imagem1.jpg" height="93" width="93">
</a>
<a href="">
<img src="imagens/imagem2.jpg" height="93" width="93">
</a>
<a href="">
<img src="imagens/imagem3.jpg" height="93" width="93">
</a>
<a href="">
<img src="imagens/imagem4.jpg" height="93" width="93">
</a>
</section><!--Fim galeria-->
</aside><!--Fim aside-->
<footer>
<p>
<a href="">Home</a>
<a href="">Exposições</a>
<a href="">Pesquisa</a>
<a href="">Acervo</a>
<a href="">Vídeos</a>
<a href="">Fotos</a>
<a href="">Contato</a>
</p>
<p>
2019 <a href="">Museu Nacional</a> - Todos os direitos reservados.
</p>
</footer>
</div><!--Fim principal-->
</div> <!--Fim container-->
</body>
</html>