-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventos.html
More file actions
89 lines (89 loc) · 3.45 KB
/
eventos.html
File metadata and controls
89 lines (89 loc) · 3.45 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
<!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>
<div class="tabela_eventos">
<h2 class="titulo-principal">Mural de Eventos</h2>
<table>
<thead>
<tr>
<th>evento</th>
<th>data/ horário</th>
<th>entrada</th>
<th>classificação</th>
</tr>
</thead>
<tbody>
<tr>
<td>Campeonato de Skate</td>
<td>25/03/2020 - 09h às 15h</td>
<td>Gratuita</td>
<td>Livre.</td>
</tr>
<tr>
<td>Festa na Gruta</td>
<td>01/04/2020 - 16h às 20h</td>
<td>R$25,00</td>
<td>Menores de 14 anos somente acompanhados pelo responsável.</td>
</tr>
<tr>
<td>Workshop infantil</td>
<td>10/04/2020 - 09h às 16h</td>
<td>1kg de alimento na perecível</td>
<td>Livre.</td>
</tr>
</tbody>
</table>
</div>
<div class="texto_observacao">
<p>*A compra de ingressos deverá ser feita no local.</p>
<p>**A entrega de alimentos será feita no dia do evento.</p>
</div>
</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>