-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (119 loc) · 5.74 KB
/
index.html
File metadata and controls
120 lines (119 loc) · 5.74 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Gruta Skate Park</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="cabecalho">
<h1><a href="index.html"><img src="img/logo.png"></a></h1>
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="midia.html">midia</a></li>
<li><a href="eventos.html">eventos</a></li>
<li><a href="contato.html">contato</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="principal">
<div class="principal_apresentacao">
<h2 class="titulo-secundario">apresentação</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Provident incidunt, velit odit laboriosam dicta minima sequi qui voluptates, nobis obcaecati id quaerat saepe vero vel cum eaque autem facilis ea.</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Provident incidunt, velit odit laboriosam dicta minima sequi qui voluptates, nobis obcaecati id quaerat saepe vero vel cum eaque autem facilis ea.</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Provident incidunt, velit odit laboriosam dicta minima sequi qui voluptates, nobis obcaecati id quaerat saepe vero vel cum eaque autem facilis ea.</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Provident incidunt, velit odit laboriosam dicta minima sequi qui voluptates, nobis obcaecati id quaerat saepe vero vel cum eaque autem facilis ea.</p>
</div>
<div class="principal_foto">
<img src="fotos/03.jpg">
</div>
</section>
<section class="atividades">
<h2 class="titulo-secundario">nosso espaço</h2>
<ul>
<li><p>Pista de Street</p><img src="fotos/04.jpg" Class="imagem_atividades"></li>
<li><p>Bowl</p><img src="fotos/foto_gruta_05.jpg" Class="imagem_atividades"></li>
<li><p>Loja</p><img src="fotos/01.jpg" Class="imagem_atividades"></li>
<li><p>Lanchonete</p><img src="fotos/foto_gruta_04.jpg" Class="imagem_atividades"></li>
</ul>
</section>
<section class="mapa">
<h2 class="titulo-secundario">nossa localização</h2>
<p>Rua Fulana Tal, nº100 - Madureira - Rio de Janeiro - RJ</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3676.0034914942093!2d-43.33557055797561!3d-22.87632942095975!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x9962d1270eb9c3%3A0x866882fdde062127!2sMadureira!5e0!3m2!1spt-BR!2sbr!4v1583502353427!5m2!1spt-BR!2sbr" width="100%" height="250" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</section>
<section class="tabela_horarios">
<h2 class="titulo-secundario">horário de funcionamento</h2>
<table>
<thead>
<tr>
<th>dia</th>
<th>horario</th>
</tr>
</thead>
<tbody>
<tr>
<td>segunda-feira</td>
<td>fechado</td>
</tr>
<tr>
<td>terça-feira</td>
<td>9h às 22h</td>
</tr>
<tr>
<td>quarta-feira</td>
<td>9h às 22h</td>
</tr>
<tr>
<td>quinta-feira</td>
<td>9h às 22h</td>
</tr>
<tr>
<td>sexta-feira</td>
<td>9h às 22h</td>
</tr>
<tr>
<td>sabado-feira</td>
<td>9h às 22h</td>
</tr>
<tr>
<td>domingo-feira</td>
<td>9h às 22h</td>
</tr>
</tbody>
</table>
</section>
</main>
<footer>
<div class="caixa-rodape">
<div class="logo-rodape">
<img src="img/logo-rodape.png">
<p class="copyright">©Copyright - Gruta Skate Park - 2020</p>
</div>
<div class="lista-de-midias">
<ul>
<li>Twitter
<img src="img/logo-twitter.png">
</li>
<li>YouTube
<img src="img/logo-youtube.png">
</li>
<li>Instagram
<img src="img/logo-instagram.png">
</li>
<li>Facebook
<img src="img/logo-facebook.png">
</li>
</ul>
</div>
</div>
</footer>
</body>
</html>