-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsobre.html
More file actions
80 lines (80 loc) · 4.91 KB
/
sobre.html
File metadata and controls
80 lines (80 loc) · 4.91 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
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/scss/style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title> Design Responsivo - Sobre nós</title>
</head>
<body class="pagina-sobre">
<header class="cabecalho">
<div class="container">
<a href="index.html" class="logo">Design Responsivo</a>
<nav class="menu-principal menu-principal--fechado">
<button class="menu-principa__btn">Abrir/fechar menu</button>
<ul class="menu-principal__lista">
<li><a class="menu-principal__item" href="index.html">Home</a></li>
<li><a class="menu-principal__item menu-principal__item--atual " href="sobre.html">Sobre nós</a></li>
<li><a class="menu-principal__item" href="portfolio.html">Portfolio</a></li>
<li><a class="menu-principal__item" href="contato.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
<main>
<article>
<header class="pagina-cabecalho">
<h1 class="pagina-cabecalho__titulo">Sobre nós</h1>
</header>
<section class="container pagina-conteudo">
<p class="text-center" >Aliquam erat volutpat. Vivamus cursus pulivinar turpis</p>
<img class="img-left" src="imagens/img/time-unido.jpg" alt="Mesa de escritório com vários colegas de trabalho se cumprimentando">
<p>ontrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin
literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney
College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage,
and going through the cites of the word in classical</p>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in
some form, by injected humour, or randomised words which don't look even slightly</p>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking
at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution</p>
</section>
</article>
</main>
<footer class="rodape">
<div class="rodape__linha-1">
<div class="container">
<div class="rodape__coluna">
<a href="index.html" class="logo logo--branco">Desingn Responsivo</a>
<p>to those who fail in their duty through weakness of will, which is the</p>
</div>
<div class="rodape__coluna">
<h2 class="rodape__titulo">Social</h2>
<ul class="rodape__lista-links">
<li><a class="rodape_lista-links__item" href="http://" target="_blank">Instagram</a></li>
<li><a class="rodape_lista-links__item" href="http://" target="_blank">Whatsapp</a></li>
<li><a class="rodape_lista-links__item" href="http://" target="_blank">Instagram</a></li>
<li><a class="rodape_lista-links__item" href="http://" target="_blank">Whatsapp</a></li>
</ul>
</div>
<div class="rodape__coluna">
<h2 class="rodape__titulo">Links</h2>
<ul class="rodape__lista-links">
<li><a class="rodape_lista-links__item" href="index.html">Home</a></li>
<li><a class="rodape_lista-links__item" href="sobre.html">Sobre nós</a></li>
<li><a class="rodape_lista-links__item" href="portfolio.html">Portfolio</a></li>
<li><a class="rodape_lista-links__item" href="contato.html">Contato</a></li>
</ul>
</div>
</div>
</div>
<div class="rodape__linha-2" >
© 2022 - Todos os diretos reservados - Leonardo de Andrade
</div>
</footer>
<script type="text/javascript" src="js/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="js/slick.min.js"></script>
<script type="text/javascript" src="js/jquery.validate.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>