1
resposta

[Projeto] HTML e CSS: Layout e tags semânticas

<!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>Portfólio de Malu</title>
</head>
<body>
    <header>
        <h1>Portfólio de <strong>Malu</strong></h1>
        <nav>
            <ul>
                <li><a href="#sobre">Sobre</a></li>
                <li><a href="#projetos">Projetos</a></li>
                <li><a href="#contato">Contato</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <section id="sobre">
            <h2>Sobre Mim</h2>
            <p>Olá! Meu nome é Malu e sou uma desenvolvedora apaixonadoa por tecnologia. Aqui você encontrará alguns dos meus projetos e trabalhos recentes.</p>
            <img src="/assets/dev1.png" alt="Desenho de uma desenvolvedora">
        </section>

        <section id="redes-sociais">
            <h2>Redes Sociais</h2>
            <a href="https://www.instagram.com/meuinsta/" target="_blank">Instagram</a>
            <a href="https://github.com/meugit" target="_blank">GitHub</a>
        </section>
    </main>

    <footer>
        <p>© 2025 Malu. Todos os direitos reservados.</p>
        <p>Contato: <a href="mailto:seuemail@example.com">seuemail@example.com</a></p>
    </footer>
</body>
</html>
1 resposta

Boa tarde

Aproveito para deixar algumas referências para mais informações sobre markup semântico.

MDN

Att,

Felipe D. R