The div tag is a generic way of adding structure to a HTML document. The most important thing to remember is that it is a block-level element.
<div class="bold"> <p>text</p> <p>text</p> <p>text</p></div>text
text
text
(Of course, we could have also used an id selector here too.)