-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
30 lines (30 loc) · 1.46 KB
/
about.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
<!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="./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="./curriculo.html">Curriculo</a>
</nav>
</header>
<main>
<section class="apresentacao">
<h1 class="apresentacao__titulo">Sobre Mim</h1>
<p class="apresentacao__texto">Sou um estudante de front end. Acabo de terminar o ensino médio e atualmente faço curso na Alura.Estou aprendendo sobre HTML5 e CSS3, juntamente com design responsivo e outras tecnologias e práticas da área.</p>
<p class="apresentacao__texto">Busco sempre aumentar o meu aprendizado, e ficar atento e atualizado sobre novas tecnologias do mercado. Almejo uma oportunidade para aplicar essa habilidade e teoria que venho aprendendo dentro da Alura.</p>
</section>
<img id="imagem-principal" src="./minha-foto.jpeg" alt="Foto do Davi codando">
</main>
<footer class="rodape">
<p>Desenvolvido por Davi Muniz.</p>
</footer>
</body>
</html>