-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmidia.html
More file actions
69 lines (69 loc) · 2.98 KB
/
midia.html
File metadata and controls
69 lines (69 loc) · 2.98 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
<!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="fotos_midia">
<h2 class="titulo-principal">fotos</h2>
<img src="fotos/foto_gruta_01.jpg">
<img src="fotos/foto_gruta_02.jpg">
<img src="fotos/foto_gruta_03.jpg">
<img src="fotos/foto_gruta_04.jpg">
<img src="fotos/foto_gruta_05.jpg">
<img src="fotos/foto_gruta_06.jpg">
<img src="fotos/foto_gruta_07.jpg">
<img src="fotos/foto_gruta_08.jpg">
<img src="fotos/foto_gruta_09.jpg">
</section>
<section class="videos">
<h2 class="titulo-principal">videos</h2>
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/LKAQzppXgK8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/ScXzGkTfdrg" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</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>