The section tag
The section tag defines a document section that combines other blocks.
Example
Let's group the page blocks using the section tag:
<section>
<div id="elem1">
<p>text</p>
<p>text</p>
<p>text</p>
</div>
<div id="elem2">
<p>text</p>
<p>text</p>
<p>text</p>
</div>
</section>
: