is it possible for a web page to have a multiple <header>and <footer> elements?
ReportQuestion
2 years ago 766 views
Yes,Is it possible for a webpage to contain multiple <header> or <footer> elements? Yes, both <header> and <footer> can be added multiple times in a webpage. Both of these tags are designed to serve a crucial purpose in relation to their parent section.
<article>
<!-- Feature Image on the LEFT -->
<div class="position-left">
...featrue image...
<header>
...H1 title ...
</header>
</div>
<!-- Content on the RIGHT with subtitle, date, etc -->
<div class="position-right">
<header>
..date, sub-title, etc...
</header>
...content...
<footer>..</footer>
</div>
</article>
Thread Reply