HTML
<!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 class="titulo-blog">
Eleve seu negócio digital a outro nível
<strong>com um Front-end de qualidade!
</strong></h1>
<p class="texto-destaque">Olá! Sou Renata Fombeli, estudante interessada em Front-end <strong>React, HTML e
CSS</strong>. Estou em transição de carreira e muito entusiasmada para o q esta por vir</p>
<a href="https://instagram.com/rafaballerini">Instagram</a>
<a href="https://github.com/guilhermeonrails">GitHub</a>
<img src="eu.jpg" alt="Foto de Renata Fombeli" style="width: 300px; height: auto;">
</main>
<footer></footer>
</body>
</html>
* {
margin: 0;
padding: 0;
}
body{
height: 100vh;
box-sizing: border-box;
background-color: #82777f;
color: #F6F6F6;
}
.texto-destaque {
color: rebeccapurple;
}
.titulo-blog {
color:rgb(211, 213, 215);
}
strong{
color: #18353c;
}
h1 {
margin: 10px;
padding: 15px;
border: black;
}
.apresentacao {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
}
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
.apresentacao {
display: flex;
justify-content: space-between;
}
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
.apresentacao {
display: flex;
align-items: center;
height: 600px;
}
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
.apresentacao {
display: flex;
align-items: center;
}
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
.apresentacao {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
flex-wrap: wrap;
}