Vim compartilhar com vocês a minha lista de exercício, da aula "Estilizando o projeto com CSS". O objetivo aqui é compartilhar, permitindo que vocês sugerem melhorias ou suas respetivas respostas, contribuindo assim para o enriquecimento do conhecimento.
HTML:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfólio de João Labussiere</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header></header>
<main>
<h1>Eleve seu negócio digital a outro nível <strong>com um Front-end de qualidade!</strong></h1>
<p>Olá! Sou João Pedro, 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://www.linkedin.com/in/jo%C3%A3o-pedro-labussiere-fran%C3%A7a-550937282/">Linkedin</a>
<a href="https://github.com/JPLabussiereF">GitHub</a>
<img src="EuPorGati2.0.jpg" alt="Uma foto minha">
</main>
<footer>Contato: +55 (71) 9 8688-9795</footer>
</body>
</html>
CSS:
body{
background-color: indigo;
color: white;
}
strong{
color: #22D4FD;
}
a{
background-color: #22D4FD;
color: black;
border-radius: 16;
width: 280;
height: 79;
}
img{
width: 488;
height: 550;
}