-
Notifications
You must be signed in to change notification settings - Fork 0
/
galeria.html
70 lines (54 loc) · 2.23 KB
/
galeria.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Galeria - Visam</title>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@600&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="img/logos/favicon.png" />
</head>
<body>
<header class="headermenu">
<nav>
<div class="header">
<a href="index.html"><img class="logoimg" src="img/logos/logoheader.svg" width="120px" title="logo" alt="logo" /></a>
<div class="linha"></div>
<div class="menu">
<div><a href="index.html">Início</a></div>
<div><a href="produtos.html">Produtos</a></div>
<div><a href="servicos.html">Serviços</a></div>
<div><a class="active" href="galeria.html">Galeria</a></div>
<div><a href="sobre.html">Sobre Nós</a></div>
</div>
</div>
</nav>
</header>
<section class="banner">
<div>
<h1>Proteção e Estética</h1>
<h2>Peliculas, adesivos e papéis de parede</h2>
</div>
</section>
<section class="content">
<div>
<p>conteúdo do site</p>
</div>
</section>
<footer>
<div>
<a href="index.html"><img class="logoimg" src="img/logos/logoheader.svg" width="120px" title="logo" alt="logo" /></a>
</div>
<div>
<h2>Sobre Nós</h2>
<p>A Visam Aplica filmes a mais de 25 anos etc...</p>
</div>
<div>
<h3>Siga-nos nas redes sociais</h3>
</div>
</footer>
</body>
</html>