1
resposta

Etapa concluida

Etapa concluida com sucesso!

produto.html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Produtos - Barbearia Alura</title>
        <link rel="stylesheet"    href="reset.css">
        <link rel="stylesheet"  href="produtocss.css">
    </head>

    <body>
        <header> 
            <div class="caixa">
                <h1> <img src="logo.png"> </h1>

                <nav>
                    <ul>
                        <li> <a href="index.html"> Home </a> </li>
                        <li> <a href="produtos.html">Produto </a></li>
                        <li> <a href="contato.html"> Contato </a></li>
                    </ul>
                </nav>
            </div>
        </header>

    </body>
</html>

produtocss.css

header {
    background: #BBBBBB;
    padding: 20px 0;
}

.caixa {
    position: relative;
    width: 940px;
    margin: 0 auto;
}

nav {
    position: absolute;
    top: 110px;
    right: 0;
}

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

Olá, Igor! Parabéns!! Praticar é a melhor forma de aprender! :)