<!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>Portifolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header></header>
<main class="apresentacao">
<h1>
Eleve seu negócio digital a outro nível
<strong class="titulo-destaque">
com um Front-end de qualidade!
</strong>
</h1>
<p cla>
Olá! Sou Joana Santos, desenvolvedora Front-end com especialidade em
React, HTML e CSS. Ajudo pequenos negócios e designers a colocarem em
prática boas ideias. Vamos conversar?
</p>
<a href="https://instagram.com/rafaballerini">Instagram</a>
<a href="https://github.com/guilhermeonrails">GitHub</a>
<img src="imagem.png" alt="Foto da Joana Santos programando" />
</main>
<footer></footer>
</body>
</html>
* {
margin: 0;
padding: 0;
}
body {
background-color: #000000;
color: #f6f6f6;
height: 100vh;
box-sizing: border-box;
}
.titulo-destaque {
color: #4be555;
}
.apresentacao {
display: flex;
align-items: center;
}
a {
color: #4be555;
}