3
respostas

projeto novo com problema!

arquivo index html não está abrindo no local do arquivo que eu quero que ele abre, está abrindo no download, e eu quero que ele abre na mesa não no download, porque?

html:

leal burguer

</header>
<main>
    <a href="contato.html"> home </a>
</main>    
<footer>
    asdfg
</footer>
insira seu código aqui
3 respostas
<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="utf-8">
    <title>leal burguer</title>
    <link rel="stylesheet"  href="reset.css">
    <link rel="stylesheet"  href="style-amburgueria.css">

</head>
<body>
    <header>
        <h1>leal burguer</h1>

    </header>
    <main>
        <a href="contato.html"> home </a>
    </main>    
    <footer>
        asdfg
    </footer>
</body>
</html>

css:

insira seu código aquiheader {
    background-color: red;
}

main {
    padding: 50%;

}
footer {
    background-color: yellow;
    padding: 40px;
}
a {
    color: pink;
    margin: 0 0 50px;
}

só uma pergunta eu sou obrigado a escrever como referente a cor em hexadecimal?