-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
142 lines (116 loc) · 4.51 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
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="pt-br">
<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/style.css">
<!-- html shiv -->
<!--[if lt IE 9]>
<script src="bower_components/html5shiv/dist/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div id="container"> <!-- inicio container -->
<header> <!-- inicio header -->
<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 header -->
<div id="principal"><!-- inicio pricipal-->
<div id="conteudo"> <!-- inicio conteudo-->
<section id="capa">
<img src="img/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" frameborder="0" allow="accelerometer; autoplay; 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/embed?pb=!1m18!1m12!1m3!1d3675.206445593992!2d-43.22871758548821!3d-22.90575504359181!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x997e58a085b7af%3A0x4d11e9a933d38ce3!2sMuseu%20Nacional%20-%20UFRJ!5e0!3m2!1spt-BR!2sbr!4v1598317904983!5m2!1spt-BR!2sbr" width="310" height="170" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></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 tigra-dentes-de-sabre</a></li>
<li><a href="">Plantas do Brasil Central</a></li>
<li><a href="">Teresa 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 hstó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, origrm do conjunto arquitetônico que hoje abriga o Museu Histórico Nacional.</p>
<a href=""><<strong>Leia mais</strong></a>
</article>
</section>
</div> <!-- fim de conteudo -->
<aside> <!-- inicio aside -->
<section>
<img src="img/depoimento.png">
</section>
<section id="visita"> <!-- inicio seção visita-->
<form>
<h4>Faça uma visita</h4>
<filedset>
<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">
</filedset>
<input class="botao" type="submit" value="verficar dispolibilidade">
</form>
</section> <!-- fim seção visita -->
<section id="galeria"> <!-- inicio secao galeria -->
<h4>Galeria de fotos</h4>
<a href="">
<img src="img/imagem1.jpg" height="93" width="93" alt="">
</a>
<a href="">
<img src="img/imagem2.jpg" height="93" width="93" alt="">
</a>
<a href="">
<img src="img/imagem3.jpg" height="93" width="93" alt="">
</a>
<a href="">
<img src="img/imagem4.jpg" height="93" width="93" alt="">
</a>
</section> <!-- fim secao 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>