-
Notifications
You must be signed in to change notification settings - Fork 0
/
fotos.html
93 lines (58 loc) · 3.17 KB
/
fotos.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
<!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/fotos.css">
<script src="_javascript/funcoes.js"></script>
</head>
<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/glass-oculos-preto-peq.png" alt="oculos preto">
<nav id="menu">
<h1>Menu Principal</h1>
<ul type="disc">
<li onmouseover="mudaFoto('_imagens/home.png')" onmouseout="mudaFoto('_imagens/fotos.png')"><a href="index.html">Home</a></li>
<li onmouseover="mudaFoto('_imagens/especificacoes.png')" onmouseout="mudaFoto('_imagens/fotos.png')"><a href="specs.html">Especificações</a></li>
<li onmouseover="mudaFoto('_imagens/fotos.png')" onmouseout="mudaFoto('_imagens/fotos.png')"><a href="fotos.html">Fotos</a></li>
<li onmouseover="mudaFoto('_imagens/multimidia.png')" onmouseout="mudaFoto('_imagens/fotos.png')"><a href="multimidia.html">Multimídia</a></li>
<li onmouseover="mudaFoto('_imagens/contato.png')" onmouseout="mudaFoto('_imagens/fotos.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 id="grupo">
<h3>Glass > Fotos</h3>
<h1>Galeria de Imagens do Google Glass</h1>
<h2>por <a href="https://github.com/YujiYashima" target="_blank">Yuji Yashima</a></h2>
<h3 class="direita">Atualizado em Abril/2013</h3>
</hgroup>
</header>
<p>Veja na nossa galeria de fotos várias belas imagens que mostram algumas das principais características do Google Glass, como recursos e propriedades que estão impressionando o mundo inteiro. Basta passar o mouse sobre uma das fotos para ver uma versão ampliada e com uma breve descrição.</p>
<ul id="album-fotos">
<li id="foto01"><span>Agenda e lembretes</span></li>
<li id="foto02"><span>Sergey Brin usando o Glass</span></li>
<li id="foto03"><span>Leve e compacto</span></li>
<li id="foto04"><span>Sensação de uma tela de 50"</span></li>
<li id="foto05"><span>Vários tipos de lente</span></li>
<li id="foto06"><span>Informações importantes</span></li>
</ul>
</article>
</section>
<footer id="rodape">
<p>
<a href="https://github.com/YujiYashima" target="_blank">©Yuji Yashima</a>
</p>
</footer>
</div>
</body>
</html>