I've searched and have not come up with any useful answers, so here goes:
Is an HTML5 <header>
tag unnecessary if there is only a single <hx>
tag inside it? For instance, I have the following HTML5 markup:
<article>
<header>
<h1>Heading Title</h1>
</header>
...
</article>
From an HTML5 semantics point of view, when there is only one <hx>
tag inside the <header>
and nothing else, is the <header>
tag unnecessary/redundant, and should I just do this instead:
<article>
<h1>Heading Title</h1>
...
</article>