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

Resposta - Consolidando o seu conhecimento

HTML:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Produtos - Barbearia Alura</title>
        <link rel="stylesheet" href="produtos.css">
    </head>
    <body>
        <header>
            <h1><img src="logo.png">
                <nav>
                    <ul>
                        <li><a href="index.html">Home</a></li>
                        <li><a href="produtos.html"> Produtos</a></li>
                        <li><a href="contato.html"> Contato</a></li>
                    </ul>
                </nav>
        </header>
    </body>
</html>

CSS:

header {
    background: #BBBBBB;
}

nav li {
    display: inline;
    margin: 0 0 0 15px;
}

nav a {
    text-transform: uppercase;
    color: #000000;
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
}
1 resposta
solução!

Oi Sthefany, tudo bem?

Que bom que você está praticando. Continue os bons estudos! E ah não esquece de finalizar o tópico depois para deixar o fórum bem organizado. :D

Bons estudos.