I discussed the header and footer. Since HTML5 provides header, footer, content elements, I believe that it should be used once per page. I will indicate them in the next fragment.
<header>
</header>
<content>
</content>
<footer>
</footer>
Few have header elements, footers, as shown below.
<header>
</header>
<content>
</content>
<footer>
<header>
</header>
</footer>
Can it be headerused in an element footer? In other words, what would you suggest creating an HTML structure?
source
share