I would like to know if you can, within the element <main>
, or <section>
, put the tags <header>
and <footer>
.
For example:
<section>
<header>topo da section</header>
conteudo da section
<footer>rodape da section</footer>
</section>
or
<main>
<header>topo da section</header>
conteudo da tag main
<footer>rodape da section</footer>
</main>
Is this correct?