-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultimidia.html
111 lines (106 loc) · 3.59 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
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tudo sobre Google Glass</title>
<link rel="stylesheet" href="_css/estilo.css" />
<link rel="stylesheet" href="_css/media.css" />
</head>
<script src="_javascript/funcoes.js"></script>
<body>
<div id="interface">
<header id="cabecalho">
<hgroup>
<h1>Google Glass</h1>
<h2>A revolução do Google está chegando</h2>
</hgroup>
<img id="icone" src="_imagens/multimidia.png" alt="Google Glass" />
<nav id="menu">
<h1>Menu Principal</h1>
<ul>
<li
onmouseover="mudaFoto('_imagens/home.png')"
onmouseout="mudaFoto('_imagens/multimidia.png')"
>
<a href="index.html">Home</a>
</li>
<li
onmouseover="mudaFoto('_imagens/especificacoes.png')"
onmouseout="mudaFoto('_imagens/multimidia.png')"
>
<a href="specs.html">Especificações</a>
</li>
<li
onmouseover="mudaFoto('_imagens/fotos.png')"
onmouseout="mudaFoto('_imagens/multimidia.png')"
>
<a href="fotos.html">Fotos</a>
</li>
<li
onmouseover="mudaFoto('_imagens/multimidia.png')"
onmouseout="mudaFoto('_imagens/multimidia.png')"
>
<a href="multimidia.html">Multimídia</a>
</li>
<li
onmouseover="mudaFoto('_imagens/contato.png')"
onmouseout="mudaFoto('_imagens/multimidia.png')"
>
<a href="fale-conosco.html">Fale conosco</a>
</li>
</ul>
</nav>
</header>
<section id="corpo-full">
<article id="noticia-principal">
<header id="cabecario-artigo">
<hgroup>
<h3>Glass > Multimídia</h3>
<h1>Sons e Vídeos</h1>
<h2>por Paulo Alvares</h2>
<h3 class="direita">Atualizado em 05/Fevereiro/2024</h3>
</hgroup>
</header>
<div id="tv-radio">
<audio id="musica" controls="controls">
<source
src="_media/2009-lovers-carvings-bibio.mp3"
type="audio/mpeg"
/>
<source
src="_media/2009-lovers-carvings-bibio.m4a"
type="audio/x-aac"
/>
<source
src="_media/2009-lovers-carvings-bibio.ogg"
type="audio/ogg"
/>
Desculpe, mas não foi possível carregar o áudio
</audio>
<video id="filme" controls="controls" poster="_imagens/video-mini03.jpg">
<source src="_media/getting-started.mp4" type="video/mp4" />
<source src="_media/getting-started.webm" type="video/webm" />
<source src="_media/getting-started.ogv" type="video/ogg" />
Desculpe, mas não foi possível carregar o vídeo
</video>
</div>
</article>
</section>
<footer id="rodape">
<p>
Copyright © 2024 - by Paulo Alvares <br />
<a
href="https://www.facebook.com/paulogabriel.alvares"
target="_blank"
>Facebook</a
>
|
<a href="https://twitter.com/PauloAlvares4" target="_blank"
>Twitter</a
>
</p>
</footer>
</div>
</body>
</html>