-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultimidia.html
66 lines (55 loc) · 2.67 KB
/
multimidia.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Tudo sobre o Google Glass</title>
<link rel="stylesheet" href="css/estilo.css">
<link rel="stylesheet" href="css/media.css">
<script src="javascript/funcoes.js"></script>
</head>
<body>
<div id="interface">
<header id="heading">
<hgroup>
<h1>Google Glass</h1>
<h2>A revolução do Google está chegando</h2>
</hgroup>
<img id="icone" src="imagens/multimidia.png" alt="Óculos preto pequeno">
<nav id="menu" onmouseout="mudaFoto('imagens/multimidia.png')">
<h1>Menu Principal</h1>
<ul type="disc">
<li onmouseover="mudaFoto('imagens/home.png')"><a href="index.html">Home</a></li>
<li onmouseover="mudaFoto('imagens/especificacoes.png')"><a href="specs.html">Especificações</a></li>
<li onmouseover="mudaFoto('imagens/fotos.png')"><a href="fotos.html">Fotos</a></li>
<li onmouseover="mudaFoto('imagens/multimidia.png')"><a href="multimidia.html">Multimídia</a></li>
<li onmouseover="mudaFoto('imagens/contato.png')"><a href="fale-conosco.html">Fale conosco</a></li>
</ul>
</nav>
</header>
<section id="corpo-full">
<article id="noticia-principal">
<header id="cabecalho-artigo">
<hgroup>
<h3>Glass > Multimídia</h3>
<h1>Sons e vídeos</h1>
<h2>por Mateus Adada</h2>
<h3 class="direita">Atualizado em 22/janeiro/2024</h3>
</hgroup>
</header>
<div id="tv-radio">
<audio id="musica" controls="controls">
<source src="media/2009-lovers-carvings-bibio.mp3" type="audio/mpeg">
Desculpe, seu navegador não suporta o áudio.
</audio>
<iframe id="filme" width="440" height="315" src="https://www.youtube.com/embed/4EvNxWhskf8?si=iyFzjDMiMOz3vMG" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</article>
</section>
<footer id="rodape">
<p>Copyright © 2024 - by Mateus Adada<br><br>
<a href="https://github.com/mateusadada/html5-cursoemvideo" target="_blank">GitHub</a> |
<a href="https://www.linkedin.com/in/mateusadada" target="_blank">LinkedIn</a></p>
</footer>
</div>
</body>
</html>