HTML FORMATTING TAGS

FORMATTING TAGS
DESCRIPTION
EXAMPLES
<p> </p> Creates a new paragraph.
<p align = x> </p> Aligns a paragraph to the (x=) left, right or center. <p align= left>, <p align=center>, <p align=right>
<br> Inserts a line break as opposed to a (2line) paragraph break.  
<blockquote> </blockquote> Indent text from both sides.  
<ol> </ol> Creates a numbered list.  
<ul> </ul> Creates a "bulleted" or unordered list.  
<li> Preceeds each list item in the ordered list (where it creates a new number) and the unordered list (where it creates a new bullet).

 

<div align = x> </div> A generaic tag used to format large block of HTML. x = left, right or center.