HTML File (tags displayed)


This page is the HTML file that created the samples page you were viewing. It enables you to see how HTML was written to display each sample. All HTML tags are in caps and encased in the < > brackets.

If you choose the Back link, you will go back to the samples in their graphically displayed form on your web browser


HEADERS

These are samples of the <H#> </H#> tags:
<H1>Header 1</H1>
Back
<H2>Header 2</H2>
<H3>Header 3</H3>
<H4>Header 4</H4>
<H5>Header 5</H5>
<H6>Header 6</H6>

FONT SIZE

These are samples of <FONT SIZE=+#> </FONT SIZE=+#> tags:
<FONT SIZE=+5>This is a font size of +5 </FONT SIZE=+5>;<BR>
Back
<FONT SIZE=+4>This is a font size of +4 </FONT SIZE=+4>;<BR>
<FONT SIZE=+3>This is a font size of +3 </FONT SIZE=+3>;<BR>
<FONT SIZE=+2>This is a font size of +2 </FONT SIZE=+2>;<BR>
<FONT SIZE=+1>is is a font size of +1 </FONT SIZE=+1>;<BR>
This is normal text with no font size ;<BR>

TEXT

This is a sample of text typed with no tags:
This is a sample of text typed in with no special formatting. The text wraps
Back
This is sample of text typed in with no special formatting. The text wraps. This is a sample of text typed in with no special formatting. The text wraps. This is a sample of text typed in with no special formatting. The text wraps.

PREFORMATTED TEXT

This is a sample of text, typed with the <PRE> </PRE> tags:
<PRE>This is a sample of<B> preformatted text</B>
Back
that will view as it is typed, with spaces, tabs, etc. It does not wrap. This is a sample preformatted text that will view as it is typed, with spaces, tabs, etc. It does not wrap. This is a sample preformatted text that will view as it is typed, with spaces, tabs, etc. It does not wrap. </PRE>

TEXT SPACING

Break Line Spacing

This is a sample of text with the <BR> tag at the end of the line:
This is a sample of text with a line break at the end of each line.<BR>
Back
This is a sample of text with a line break at the end of each line.<BR>
This is a sample of text with a line break at the end of each line.<BR>

You can add more vertical space between lines by inserting more <BR> tags
<BR>
<BR>
This is a sample of text with 2 <BR> tags between this line and the line above
<BR>
<BR>
<BR>
<BR>
This is a sample of text with 4 <BR> tags between this line and the line above

Paragraph Line Spacing

This is a sample of text with the <P> tag at the end of the line:
This is a sample of text with a paragraph break at the end of each line.<P>
Back
This is a sample of text with a paragraph break at the end of each line.<P>
This is a sample of text with a paragraph break at the end of each line.<P>


TEXT STYLES


<B>This is bold text</B> Back
<STRONG>This is strong text</STRONG>
<I>This is italic text</I>
The horizontal line below was created with the horizontal line tag <HR>

LIST FORMATS

Bulleted List

This is a sample of a bulleted list, using the <UL> and <LI> tags
Back
<UL>
<LI>Bullet 1
<LI>Bullet 2
<LI>Bullet 3
</UL>

Numbered List

This is a sample of a numbered list, using the <OL> and <LI> tags Back
<OL>
<LI>Item 1
<LI>Item 2
<LI>Item 3
</OL>

Definition Lists

This is an example a definiton/term list, using the<DL>, <DT> and <DD> tags:
Back
<DL>
<DT>Sugar
<DD>A sweet substance derived from sugar cane and sugar beets
<DT>Lemonade
<DD>A drink made from lemons and sugar
</DL>


Last Modified 6/24/96