1  <HTML>
  2  <HEAD>
  3    <TITLE>HTML Example:  Dividers</TITLE>
  4  </HEAD>
  5  <BODY BGCOLOR="#FFFFFF">
  6  
  7  <H1>Dividers</H1>
  8  
  9  Paragraphs are separated by a &lt;P&gt; tag (or surrounded 
 10  with a &lt;P&gt;&nbsp;...&nbsp;&lt;/P&gt; container). <P>
 11  
 12  Lines may be broken with a &lt;BR&gt; tag, 
 13  as in the following address: <P>
 14  
 15  Northeast Parallel Architectures Center <BR>
 16  111 College Place <BR>
 17  Syracuse University <BR>
 18  Syracuse, NY 13244-4100 <P>
 19  
 20  Various types of horizontal rules are possible:
 21  
 22  <P><HR>
 23  
 24  <P><HR WIDTH=100>  <!-- width in pixels -->
 25  
 26  <P><HR SIZE=6>     <!-- height in pixels -->
 27  
 28  <P>See below for the corresponding HTML tags.
 29  
 30  </BODY>
 31  </HTML>