1
resposta

Resolução 06 Consolidando o seu conhecimento

HTML

<!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> Produtos - Barbearia Alura </title>
    <link rel="stylesheet" href="produtos.css">
</head>
<body>
    <header>
        <h1>
            <img src="/logo.png" alt="logo-barbearia-Alura">
        </h1>
        <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{
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
}
1 resposta

Olá, Wesley! Agradeço por compartilhar seu código com outros estudantes.

Surgindo dúvidas, pode contar com a gente! :)