I wrote the following code.
<header>page header!</header>
<div class="content">
<header>content header?</header>
<footer>content footer?</footer>
</div>
<footer>page footer!</footer>
I read many articles, I know that div elements are meaningless semantically.
If so, where do you belong to the header and footer elements in the div element of the code I wrote?
I am not looking for an alternative to a div element. I want to know if the footer element of the div element functions as the footer of the content in the div element.
Thank you.