Header

Main Content

Article

Divisions

Divisions, or divs, <div></div> are sections of an HTML document.  Divs group block-elements and can be formatted with styles.  Where tables format data, divs are used to format the look of a HTML page.  Some style attributes do not work with div tags because of the predefined styles in the agency CSS.

<div style="margin:5px; width:150px; align:left">
  <h3> This is a header </h3>
  <p> This is a paragraph. </p>
</div>