How in:
<header id="mainHeader">
<hgroup>
<h1>Title</h1>
<h2>Sub Title</h2>
</hgroup>
<aside>
<p>Some content within the header but isn't as important.</p>
<p>Some content within the header but isn't as important line 2.</p>
</aside>
</header>
The reason for this, as shown above, is that I have some content that belongs to the header (for example, a short block of information), but is only somehow connected, but not as important as the h1 and h2 tags.
Or should I just use a regular div?
source
share