1
resposta

[Projeto] Desafio

<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Home</title>
    <link rel="stylesheet" href="./styles/style.css">
</head>
<body>
    <header class="cabecalho">
        <nav class="cabecalho__menu">
            <a class="cabecalho__menu_link" href="index.html">Home</a>
            <a class="cabecalho__menu_link" href="about.html">Sobre mim</a>
        </nav>
    </header>
    <main class="apresentacao"></main>
    <footer class="rodape"></footer>
</body>
</html>

Style.css

*{
    margin: 0;
    padding: 0;
}
.cabecalho{
    padding: 2% 0% 0% 15%;
}

.cabecalho__menu{
    display: flex;
    gap: 80px;
}

.cabecalho__menu_link{
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #22D4FD;
    text-decoration: none;
}

.apresentacao {
    padding: 5% 15%;
}

about.html

<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Sobre mim</title>
    <link rel="stylesheet" href="./styles/style.css">
</head>
<body>
    <header class="cabecalho">
        <nav class="cabecalho__menu">
            <a class="cabecalho__menu_link" href="index.html">Home</a>
            <a class="cabecalho__menu_link" href="about.html">Sobre mim</a>
        </nav>
    </header>
    <main>
        <h1>Sobre mim</h1>
    </main>
    <footer></footer>
</body>
</html>
1 resposta

Olá, Ariel, como vai?

Seu código está muito bem estruturado, parabéns pelo cuidado com a organização e pelo uso consistente das classes no CSS. Você fez um excelente trabalho!

Obrigado por compartilhar seu código aqui no fórum! Continue compartilhando seus projetos e dúvidas, pois isso ajuda muito no aprendizado e também inspira outros colegas.

Siga firme nos seus estudos e conte com o fórum sempre que precisar!

Abraços :)