[Top] -- HTML Documentation Table of Contents

Dividers

No notation:
3.0:
HTML 2.0
HTML 3.0 tag
N1.0:
N1.1:
N2.0:
Netscape extension with Navigator 1.0
Netscape extension with Navigator 1.1
Netscape extension with Navigator 2.0


Paragraph (usually a double return)
<p>
These lines are separated by <p>

These lines are separated by

3.0Paragraph (redefined as a container tag)
<p> </p>

This has <p> </p> aligned to the left.

3.0Align Text
<p align=left></p>
<p align=center></p>
<p align=right></p>

This has <p> </p> aligned to the left.

This has <p> </p> aligned to the right.

This has <p> </p> aligned in the center.


Line Break (a single carriage return)
<br>
These lines are separated by <br>
These lines are separated by
N1.0Clear Textwrap
<br clear=left>
<br clear=right>
<br clear=all>

This has a simple <br>

This has a <br clear=left>. This has a <br clear=left>. This has a <br clear=left>. This has a <br clear=left>. This has a <br clear=left>.

This has a <br clear=right>. This has a <br clear=right>. This has a <br clear=right>. This has a <br clear=right>.

This has a <br clear=all>. This has a <br clear=all>. This has a <br clear=all>. This has a <br clear=all>.

Horizontal Rule <hr>

N1.0Thickness (in pixels)
<hr size=?>
This is <hr size=25>
N1.0 Width (in pixels)
<hr width=?>
This is <hr width=75>
N1.0 Width Percent (as a percentage of page width)
<hr width=%>
This is <hr width=75%>
N1.0Alignment
<hr align=left> <hr align=right><hr align=center>

This is <hr align=left width=75>

This is <hr align=right width=75>

This is <hr align=center width=75>
N1.0 Solid Line (without the 3d cutout look)
<hr noshade>

N1.0 No Break (prevents line breaks)
<nobr></nobr>
This is no break. This is no break. This is no break. This is no break.
N1.0 Word Break (where to break a line if needed)
<wbr>
This is no break. This is word break. This is word break. This is word break. This is no break. This is word break. This is word break. This is word break. This is no break.

[Top] -- HTML Documentation Table of Contents