-
Notifications
You must be signed in to change notification settings - Fork 0
/
Portfólio.html
31 lines (29 loc) · 1.15 KB
/
Portfólio.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
<!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>Sobre Mim</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header class="cabecalho">
<nav class="cabecalho__menu">
<a class="cabecalho__menu__link" href="index.html">Home</a>
<a class="cabecalho__menu__link" href="about.html">Sobre mim</a>
<a class="cabecalho__menu__link" href="portfolio.html">Portfólio</a>
</nav>
</header>
<main class="portfolio">
<section class="portfolio__conteudo">
<h1 class="portfolio__conteudo__titulo">Portfólio</h1>
<p class="portfolio__conteudo__texto">Em construção!</p>
</section>
<img class="portfolio__imagem src="./assets/construcao.jpg" alt="Em construção">
<a href="http://www.freepik.com">Designed by stories / Freepik</a>
</main>
<footer class="rodape">
<p>Desenvolvido por Geovana Salamanca</p>
</footer>
</body>