HTML hgroup
The hgroup HTML element is intended to group headers of different levels for a section of the document.
Ele agrupa (é um container para) um conjunto de elementos H1, H2, H3...
Segue exemplo da tag hgrup.
Titulo 1
Titulo 2
Titulo 3
Usado para agrupar titulos próximos.
HTML code:
x
<hgroup>
<h1>Titulo 1</h1>
<h2>Titulo 2</h2>
<h3>Titulo 3</h3>
</hgroup>
<h1>Titulo 1</h1>
<h2>Titulo 2</h2>
<h3>Titulo 3</h3>
</hgroup>