Div

<DIV ALIGN=?> </DIV>

The DIV tag is used to mark up divisions in a document, it can enclose paragraphs, headers, and any of the other block elements. You use it to set the default alignment for all of the enclosed block elements. It decide if it should be aligned to the left, center, or right.

Example:

<DIV ALIGN=RIGHT>
<H4>Hey</H4>
<H1>there</H1>
</DIV>

Hey

there