<!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> Portfolio </header>
<main>
<h1>
Eleve seu negócio digital a outro nível
<strong>com um Front-end de qualidade!
</strong></h1>
<p>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>
<img src="imagem.png" alt="Foto da Joana Santos programando"><br>
<button> <a href="https://instagram.com/rafaballerini">Instagram</a> </button>
<button> <a href="https://github.com/guilhermeonrails">GitHub</a> </button>
</main>
<footer> Site feito Rickson Varjão </footer>
</body>
</html>
Style - estilo formal e elegante
body {
background-color: #4B0082;
color: white;
}
p {
color: white;
text-align:left;
}
button {
background-color: #4B0082;
color: white;
border-style: solid;
}
footer{
background-color: gray;
color: white;
}
Style_1-estilo colorido e divertido
body {
background-color: green;
color: red
;
}
p {
color: white;
text-align:left;
}
button {
background-color: grey;
color: white;
border-style: solid;
}
a{
color: white;
}
footer{
background-color: gray;
color: white;
}
Style_2- visual minimalista e limpo
body {
background-color: grey;
color: white;
}
p {
color: white;
text-align:left;
}
button {
background-color: grey;
color: white;
border-style: solid;
}
footer{
background-color: gray;
color: white;
}