1
resposta

lista exercicios Flexbox

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;
}
1 resposta

Olá, Orlans, como vai?

O código está muito bem estruturado e utiliza boas práticas de CSS para posicionamento e estilização. A aplicação do Flexbox foi feita de forma clara e eficiente, garantindo um layout responsivo e bem organizado. Ótimo trabalho!

Continue explorando e compartilhando seus avanços no fórum.

Alura Conte com o apoio da comunidade Alura na sua jornada. Abraços e bons estudos!