Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Exercício Portifólio

HTML

<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Portifólio</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <header>
        <!-- Menu ou Logotipo -->
    </header>
    <main>
        <div>
            <h1>Eleve seu negócio digital a outro nível 
            <strong>com um Front-end de qualidade!</strong></h1>
            <p>Olá! Sou Gleice Constâncio, estudante e 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">Instagram</a>
            <a href="https://github.com">Github</a>
        </div>
            <img src="Imagem.png" alt="Desenvolvedora">
    </main>
    <br>
    <footer>
        Olímpia, 2025. Todos os direitos reservados.
    </footer>
</body>
</html>

CSS

body {
    background-color: black;
    color: #f6f6f6;
    text-align: center;
}
h1 {
    color: #f6f6f6; font-size: 36px;
    text-align: justify;
}
strong {
    color: #22d4fd; font-size: 36px;
}
p {
    color: #f6f6f6; font-size: 24px;
    text-align: justify;
    display: inline-block;
}
button { 
    background-color: blue; color: white; border: none; border-radius: 5px; padding: 10px 20px; cursor: pointer;
}
a {
    color: black; font-size: 24px;
    background-color: #22d4fd;
    padding: 16px;
    margin: 16px;
    border-radius: 16px;
}
div {
    width: 615px;
    height: 482px;
    text-align: justify;
    text-align: center;
    padding-left: 270px;
    padding-top: 270px;
    float: left;
}
img {
    display: inline-block;
    justify-content: flex-start;
    margin-top: 200px;
}
1 resposta
solução!

Olá, Gleice, como vai?

Seu código está bem organizado e segue uma boa estrutura. No CSS, há algumas propriedades que podem estar gerando conflitos. Por exemplo, no div, você definiu text-align: justify; e text-align: center;, mas o último valor sempre será o que prevalece. Além disso, o display: inline-block; no p pode afetar o layout dependendo do contexto. Outro ponto é o justify-content: flex-start; na img, pois essa propriedade só funciona em elementos com display: flex;

Seu portfólio está tomando uma ótima forma, continue compartilhando suas evoluções no fórum.

Siga firme nos seus estudos!

Abraços :)