1
resposta

[Projeto] Desafio - HTML & CSS (Nova Pagina)

<!DOCTYPE html>
<html lang="en">
<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></main>
    <footer class="rodape"> 
        <p>Desenvolvido por Fabricio Fialho - Alura</p>
    </footer>
</body>
</html>

@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@400;600&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    box-sizing: border-box;
    background-color: black;
    color: #F6F6F6;
}

.titulo-destaque{
    color: #22d4fe;
}

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

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

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

}

.apresentacao{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5% 15%;
}

.apresentacao__conteudo{
     width: 615px;
     display: flex;
     flex-direction: column;
     gap: 40px;
}

.apresentacao__conteudo__titulo{
    font-size: 36px;
    font-family: 'Krona One', sans-serif;
}

.apresentacao__conteudo__texto{
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

.apresentacao__links{   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}
.apresentacao__links__subtitulo{
    font-family: 'Krona One', sans-serif;
    font-weight: 400;
    font-size: 24px;
}

.apresentacao__links__link{
    display: flex;
    gap: 16px;
    justify-content: center;
    border: 2px solid #22d4fd;
    width: 378px;
    text-align: center;
    border-radius: 8px;
    font-size: 24px;
    padding: 21.5px 0px;
    text-decoration: none;
    color: #F6F6F6;
    font-family: 'Montserrat', sans-serif;        
    font-weight: 600;
}

.apresentacao__links__link:hover{
    background-color: #272727;
    color: #22d4fd;
}

.rodape{
    color: black;
    background-color: #22d4fd;
    padding: 24px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;        
    font-size: 24px;
    font-weight: 400;
}
1 resposta

Olá, Fabricio! Tudo bem?

Você fez um ótimo trabalho no código HTML e CSS. A estrutura do seu HTML está correta e o CSS está bem organizado.

Continue se desafiando e explorando, estamos acompanhando o seu progresso, bons estudos!