00952ef543
alias
1573 lines
62 KiB
HTML
1573 lines
62 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<HTML>
|
|
<!--
|
|
The contents of this file are subject to the Mozilla Public License Version 1.1
|
|
(the "License"); you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
|
WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
|
language governing rights and limitations under the License.
|
|
|
|
The Original Code is the Venice Web Community System.
|
|
|
|
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@users.sf.net>,
|
|
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
|
Copyright (C) 2001 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
-->
|
|
<HEAD>
|
|
<TITLE>Venice HTML Tags Reference</TITLE>
|
|
<META NAME="MSSmartTagsPreventParsing" CONTENT="TRUE">
|
|
</HEAD>
|
|
<BODY>
|
|
<FONT FACE="Arial, Helvetica" SIZE=2>
|
|
<H3>Venice HTML Tags Reference</H3>
|
|
<UL>
|
|
<LI><A HREF="#taga">A</A>
|
|
<LI><A HREF="#tagacronym">ACRONYM</A>
|
|
<LI><A HREF="#tagaddress">ADDRESS</A>
|
|
<LI><A HREF="#tagb">B</A>
|
|
<LI><A HREF="#tagbig">BIG</A>
|
|
<LI><A HREF="#tagblockquote">BLOCKQUOTE</A>
|
|
<LI><A HREF="#tagbr">BR</A>
|
|
<LI><A HREF="#tagcenter">CENTER</A>
|
|
<LI><A HREF="#tagcite">CITE</A>
|
|
<LI><A HREF="#tagcode">CODE</A>
|
|
<LI><A HREF="#tagdd">DD</A>
|
|
<LI><A HREF="#tagdfn">DFN</A>
|
|
<LI><A HREF="#tagdir">DIR</A>
|
|
<LI><A HREF="#tagdiv">DIV</A>
|
|
<LI><A HREF="#tagdl">DL</A>
|
|
<LI><A HREF="#tagdt">DT</A>
|
|
<LI><A HREF="#tagem">EM</A>
|
|
<LI><A HREF="#tagfont">FONT</A>
|
|
<LI><A HREF="#taghxxx">H1, H2, H3, H4, H5, H6</A>
|
|
<LI><A HREF="#taghr">HR</A>
|
|
<LI><A HREF="#tagi">I</A>
|
|
<LI><A HREF="#tagimg">IMG</A>
|
|
<LI><A HREF="#tagkbd">KBD</A>
|
|
<LI><A HREF="#tagli">LI</A>
|
|
<LI><A HREF="#tagmenu">MENU</A>
|
|
<LI><A HREF="#tagnobr">NOBR</A>
|
|
<LI><A HREF="#tagol">OL</A>
|
|
<LI><A HREF="#tagp">P</A>
|
|
<LI><A HREF="#tagq">Q</A>
|
|
<LI><A HREF="#tags">S</A>
|
|
<LI><A HREF="#tagsamp">SAMP</A>
|
|
<LI><A HREF="#tagsmall">SMALL</A>
|
|
<LI><A HREF="#tagstrike">STRIKE</A>
|
|
<LI><A HREF="#tagstrong">STRONG</A>
|
|
<LI><A HREF="#tagsub">SUB</A>
|
|
<LI><A HREF="#tagsup">SUP</A>
|
|
<LI><A HREF="#tagtt">TT</A>
|
|
<LI><A HREF="#tagu">U</A>
|
|
<LI><A HREF="#tagul">UL</A>
|
|
<LI><A HREF="#tagvar">VAR</A>
|
|
<LI><A HREF="#wbr">WBR</A>
|
|
</UL>
|
|
<A HREF="#colors">Colors in HTML</A><P>
|
|
<A HREF="#chars">Special Characters</A>
|
|
<HR>
|
|
|
|
<A NAME="taga"><H3>A</H3></A>
|
|
The <EM>anchor tag,</EM> which encloses either text or graphics and either creates a hyperlink
|
|
to another page or a named reference which can be hyperlinked to.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><A [HREF="<EM>reference</EM>"] [NAME="<EM>name</EM>"]
|
|
[TARGET="<EM>target-spec</EM>"] [TITLE="<EM>title</EM>"] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG>HREF="<EM>reference</EM>"</STRONG><P>
|
|
<EM>Optional:</EM> Specifies a destination address for a hyperlink, which must be in URL format.<P>
|
|
<STRONG>NAME="<EM>name</EM>"</STRONG><P>
|
|
<EM>Optional:</EM> Specifies a named reference within a document. Other pages can then link
|
|
to this reference within the document by appending a pound sign (#) and the <EM>name</EM> to
|
|
the URL for the document.<P>
|
|
<STRONG>TARGET="<EM>target-spec</EM>"</STRONG><P>
|
|
<EM>Optional:</EM> Specifies a target frame name for the link to be loaded into.<P>
|
|
<STRONG>TITLE="<EM>title</EM>"</STRONG><P>
|
|
<EM>Optional:</EM> Specifies the title that appears when the hyperlink is selected.
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>Either <STRONG>HREF</STRONG> or <STRONG>NAME</STRONG>, but not both, should be used with this tag.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD>
|
|
<TT>
|
|
<A HREF="http://www.megatokyo.com">This is a link to the MegaTokyo online
|
|
comic/manga.</A><P><BR>
|
|
<A HREF="http://slashdot.org" TARGET="_blank">This link loads
|
|
Slashdot into a new window.</A>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<A HREF="http://www.megatokyo.com">This is a link to the MegaTokyo online comic/manga.</A><P>
|
|
<A HREF="http://slashdot.org" TARGET="_blank">This link loads Slashdot into a new window.</A>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagacronym"><H3>ACRONYM</H3></A>
|
|
Formats text as an acronym abbreviation.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><ACRONYM [TITLE="<EM>title</EM>"] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG>TITLE="<EM>title</EM>"</STRONG><P>
|
|
<EM>Optional:</EM> Specifies an advisory title for the acronym, which may be displayed by the
|
|
browser via a tip window or other such mechanism.
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>The formatted text may be displayed differently in different browsers. Usually, it is
|
|
formatted as Roman type.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Sun uses the <ACRONYM TITLE="Java Community Process">JCP</ACRONYM><BR>
|
|
(Java Community Process) to determine which enhancements will go into the Java language.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Sun uses the <ACRONYM TITLE="Java Community Process">JCP</ACRONYM>
|
|
(Java Community Process) to determine which enhancements will go into the Java language.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagaddress"><H3>ADDRESS</H3></A>
|
|
Specifies information such as address, signature, and ownership.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><ADDRESS></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>
|
|
The formatted text may be displayed differently in different browsers. Usually, it is formatted
|
|
as italic type.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Here's some text.<BR>
|
|
<ADDRESS>Jabber.com Inc. - support@jabber.com</ADDRESS>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Here's some text.
|
|
<ADDRESS>Jabber.com Inc. - support@jabber.com</ADDRESS>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagb"><H3>B</H3></A>
|
|
Renders enclosed text in bold.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><B></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Some of the text on this line will be <B>rendered in bold face</B> type.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Some of the text on this line will be <B>rendered in bold face</B> type.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagbig"><H3>BIG</H3></A>
|
|
Renders enclosed text in larger type.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><BIG></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Some of the text on this line will be <BIG>rendered in large</BIG> type.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Some of the text on this line will be <BIG>rendered in large</BIG> type.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagblockquote"><H3>BLOCKQUOTE</H3></A>
|
|
Sets apart a long quotation in text. Usually displayed as indented by a small amount.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><BLOCKQUOTE></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Season 2 opening monologue:<BR>
|
|
<BLOCKQUOTE>The Babylon Project was our last, best hope for peace. A self-contained<BR>
|
|
world five miles long, located in neutral territory. A place of commerce and diplomacy for<BR>
|
|
a quarter of a million humans and aliens. A shining beacon in space, all alone in the night.<BR>
|
|
It was the dawn of the Third Age of Mankind, the year the Great War came upon us all. This is<BR>
|
|
the story of the last of the Babylon stations. The year is 2259. The name of the place is<BR>
|
|
Babylon 5.</BLOCKQUOTE>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Season 2 opening monologue:
|
|
<BLOCKQUOTE>The Babylon Project was our last, best hope for peace. A self-contained
|
|
world five miles long, located in neutral territory. A place of commerce and diplomacy for
|
|
a quarter of a million humans and aliens. A shining beacon in space, all alone in the night.
|
|
It was the dawn of the Third Age of Mankind, the year the Great War came upon us all. This is
|
|
the story of the last of the Babylon stations. The year is 2259. The name of the place is
|
|
Babylon 5.</BLOCKQUOTE>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagbr"><H3>BR</H3></A>
|
|
Inserts a line break.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><BR [CLEAR=LEFT|RIGHT|ALL]></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Forbidden
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG>CLEAR=LEFT|RIGHT|ALL</STRONG><P>
|
|
Inserts vertical space so that the next text displayed will be past left- or right-aligned
|
|
"floating" images. The align-type can be <STRONG>LEFT</STRONG>,
|
|
<STRONG>RIGHT</STRONG>, or <STRONG>ALL</STRONG>.
|
|
<UL>
|
|
<LI><STRONG>LEFT</STRONG> inserts space so that the next text appears aligned with the
|
|
left margin directly below a left-aligned floating image.
|
|
<LI><STRONG>RIGHT</STRONG> inserts space so that the next text appears aligned with the
|
|
right margin directly below a right-aligned floating image.
|
|
<LI><STRONG>ALL</STRONG>places the next text past all floating images.
|
|
</UL>
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
This line illustrates<BR>a simple line break.<P><BR>
|
|
<IMG SRC="images/ref64yr.gif" WIDTH=64 HEIGHT=64 HSPACE=5 ALIGN=LEFT><BR>
|
|
A left aligned image.<BR CLEAR=LEFT><BR>
|
|
This shows the effect of the CLEAR=LEFT parameter.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
This line illustrates<BR>a simple line break.<P>
|
|
<IMG SRC="images/ref64yr.gif" WIDTH=64 HEIGHT=64 HSPACE=5 ALIGN=LEFT>
|
|
A left aligned image.<BR CLEAR=LEFT>
|
|
This shows the effect of the CLEAR=LEFT parameter.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagcenter"><H3>CENTER</H3></A>
|
|
Centers text and images in the browser window.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><CENTER></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<CENTER>These lines will be centered<P><BR>
|
|
until the CENTER tag is closed.</CENTER>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<CENTER>These lines will be centered<P>
|
|
until the CENTER tag is closed.</CENTER>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagcite"><H3>CITE</H3></A>
|
|
Indicates a citation. Refers to a book, paper, or other published source material.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><CITE></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers. Usually, though, it renders text as italic.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
You can find a reference to that in <CITE>The Cathedral and The Bazaar</CITE>,<BR>
|
|
by Eric Raymond.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
You can find a reference to that in <CITE>The Cathedral and The Bazaar</CITE>,
|
|
by Eric Raymond.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagcode"><H3>CODE</H3></A>
|
|
Indicates a code sample.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><CODE></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers. Usually, though, it renders text
|
|
in a small fixed-width font.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Here's a recursive factorial function in Java:<P><BR>
|
|
<CODE>public static long factorial(long n)<BR><BR>
|
|
{<BR><BR>
|
|
&nbsp;&nbsp;if (n==0)<BR><BR>
|
|
&nbsp;&nbsp;&nbsp;&nbsp;return 1;<BR><BR>
|
|
&nbsp;&nbsp;else<BR><BR>
|
|
&nbsp;&nbsp;&nbsp;&nbsp;return n * factorial(n - 1);<BR><BR>
|
|
}<BR></CODE>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Here's a recursive factorial function in Java:<P>
|
|
<CODE>public static long factorial(long n)<BR>
|
|
{<BR>
|
|
if (n==0)<BR>
|
|
return 1;<BR>
|
|
else<BR>
|
|
return n * factorial(n - 1);<BR>
|
|
}<BR></CODE>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagdd"><H3>DD</H3></A>
|
|
Specifies a definition in a definition list. Indicates that the text is a definition
|
|
of a term, and should therefore be displayed in the right-hand column of a definition list.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><DD></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Forbidden
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<DL><BR>
|
|
<DT><EM>Anla'shok</EM><BR>
|
|
<DD>The secret Minbari fighting force established by Valen after the last war with<BR>
|
|
the Shadows. The name translates roughly as "Rangers." Valen was the first<BR>
|
|
leader of this force, or "Ranger One" (<EM>Anla'shok Na</EM>);<BR>
|
|
this post was filled a thousand years later by Jeffrey Sinclair, and later by Delenn.<BR>
|
|
<DT><EM>Denn'bok</EM><BR>
|
|
<DD>The Minbari fighting pike, nominally a compact cylinder approximately 1 foot<BR>
|
|
in length, but telescoping out to approximately 5 feet upon command. A standard weapon<BR>
|
|
of the Rangers.<BR>
|
|
<DT><EM>Entil'zha</EM><BR>
|
|
<DD>One of Valen's titles as leader of the Rangers. The title's meaning is unknown;<BR>
|
|
it is thought to be of Vorlon origin.<BR>
|
|
</DL>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<DL>
|
|
<DT><EM>Anla'shok</EM>
|
|
<DD>The secret Minbari fighting force established by Valen after the last war with
|
|
the Shadows. The name translates roughly as "Rangers." Valen was the first
|
|
leader of this force, or "Ranger One" (<EM>Anla'shok Na</EM>);
|
|
this post was filled a thousand years later by Jeffrey Sinclair, and later by Delenn.
|
|
<DT><EM>Denn'bok</EM>
|
|
<DD>The Minbari fighting pike, nominally a compact cylinder approximately 1 foot
|
|
in length, but telescoping out to approximately 5 feet upon command. A standard weapon
|
|
of the Rangers.
|
|
<DT><EM>Entil'zha</EM>
|
|
<DD>One of Valen's titles as leader of the Rangers. The title's meaning is unknown;
|
|
it is thought to be of Vorlon origin.
|
|
</DL>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagdfn"><H3>DFN</H3></A>
|
|
Specifies a definition. Formats a term for its first appearance in a document.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><DFN></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Jabber transmits all its messages in <DFN>XML (Extensible<BR>
|
|
Markup Language),</DFN> which contains plain text with some delimiting codes.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Jabber transmits all its messages in <DFN>XML (Extensible
|
|
Markup Language),</DFN> which contains plain text with some delimiting codes.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagdir"><H3>DIR</H3></A>
|
|
Denotes a directory list. Specifies that the following block consists of individual items,
|
|
each beginning with an LI element and none containing more than 20 characters, that should
|
|
be displayed in columns.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><DFN></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers, but will usually be rendered
|
|
similarly to the UL tag.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Listing for the directory:<P><BR>
|
|
<DIR><BR>
|
|
<LI>bin<BR>
|
|
<LI>etc<BR>
|
|
<LI>lib<BR>
|
|
<LI>opt<BR>
|
|
<LI>usr<BR>
|
|
<LI>var<BR>
|
|
</DIR>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Listing for the directory:<P>
|
|
<DIR>
|
|
<LI>bin
|
|
<LI>etc
|
|
<LI>lib
|
|
<LI>opt
|
|
<LI>usr
|
|
<LI>var
|
|
</DIR>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagdiv"><H3>DIV</H3></A>
|
|
Denotes a division of text. Frequently used to align a block of text.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><DIV [ALIGN=CENTER|LEFT|RIGHT] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG>ALIGN=CENTER|LEFT|RIGHT</STRONG><P>
|
|
Specifies the alignment of the lines within this particular division. The align-type can be
|
|
<STRONG>CENTER</STRONG>, <STRONG>LEFT</STRONG>, or <STRONG>RIGHT</STRONG>.
|
|
<UL>
|
|
<LI><STRONG>CENTER</STRONG> centers the lines of text within the division.
|
|
<LI><STRONG>LEFT</STRONG> aligns the left edges of all the lines of text within the division
|
|
with the left margin. This is the default.
|
|
<LI><STRONG>RIGHT</STRONG> aligns the right edges of all the lines of text within the division
|
|
with the right margin.
|
|
</UL>
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<DIV ALIGN=CENTER>These lines of text<BR>will be centered.</DIV><BR>
|
|
<DIV ALIGN=RIGHT>These lines of text<BR>will be flush right.</DIV>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<DIV ALIGN=CENTER>These lines of text<BR>will be centered.</DIV>
|
|
<DIV ALIGN=RIGHT>These lines of text<BR>will be flush right.</DIV>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagdl"><H3>DL</H3></A>
|
|
Specifies that the following block is a definition list, that is, an automatically
|
|
formatted two-column list with terms on the left and their definitions on the right.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><DL></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<DL><BR>
|
|
<DT><EM>Anla'shok</EM><BR>
|
|
<DD>The secret Minbari fighting force established by Valen after the last war with<BR>
|
|
the Shadows. The name translates roughly as "Rangers." Valen was the first<BR>
|
|
leader of this force, or "Ranger One" (<EM>Anla'shok Na</EM>);<BR>
|
|
this post was filled a thousand years later by Jeffrey Sinclair, and later by Delenn.<BR>
|
|
<DT><EM>Denn'bok</EM><BR>
|
|
<DD>The Minbari fighting pike, nominally a compact cylinder approximately 1 foot<BR>
|
|
in length, but telescoping out to approximately 5 feet upon command. A standard weapon<BR>
|
|
of the Rangers.<BR>
|
|
<DT><EM>Entil'zha</EM><BR>
|
|
<DD>One of Valen's titles as leader of the Rangers. The title's meaning is unknown;<BR>
|
|
it is thought to be of Vorlon origin.<BR>
|
|
</DL>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<DL>
|
|
<DT><EM>Anla'shok</EM>
|
|
<DD>The secret Minbari fighting force established by Valen after the last war with
|
|
the Shadows. The name translates roughly as "Rangers." Valen was the first
|
|
leader of this force, or "Ranger One" (<EM>Anla'shok Na</EM>);
|
|
this post was filled a thousand years later by Jeffrey Sinclair, and later by Delenn.
|
|
<DT><EM>Denn'bok</EM>
|
|
<DD>The Minbari fighting pike, nominally a compact cylinder approximately 1 foot
|
|
in length, but telescoping out to approximately 5 feet upon command. A standard weapon
|
|
of the Rangers.
|
|
<DT><EM>Entil'zha</EM>
|
|
<DD>One of Valen's titles as leader of the Rangers. The title's meaning is unknown;
|
|
it is thought to be of Vorlon origin.
|
|
</DL>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagdt"><H3>DT</H3></A>
|
|
Specifies a term in a definition list. Indicates that the text is a term to be defined,
|
|
and should therefore be displayed in the left-hand column of a definition list.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><DT></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Forbidden
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<DL><BR>
|
|
<DT><EM>Anla'shok</EM><BR>
|
|
<DD>The secret Minbari fighting force established by Valen after the last war with<BR>
|
|
the Shadows. The name translates roughly as "Rangers." Valen was the first<BR>
|
|
leader of this force, or "Ranger One" (<EM>Anla'shok Na</EM>);<BR>
|
|
this post was filled a thousand years later by Jeffrey Sinclair, and later by Delenn.<BR>
|
|
<DT><EM>Denn'bok</EM><BR>
|
|
<DD>The Minbari fighting pike, nominally a compact cylinder approximately 1 foot<BR>
|
|
in length, but telescoping out to approximately 5 feet upon command. A standard weapon<BR>
|
|
of the Rangers.<BR>
|
|
<DT><EM>Entil'zha</EM><BR>
|
|
<DD>One of Valen's titles as leader of the Rangers. The title's meaning is unknown;<BR>
|
|
it is thought to be of Vorlon origin.<BR>
|
|
</DL>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<DL>
|
|
<DT><EM>Anla'shok</EM>
|
|
<DD>The secret Minbari fighting force established by Valen after the last war with
|
|
the Shadows. The name translates roughly as "Rangers." Valen was the first
|
|
leader of this force, or "Ranger One" (<EM>Anla'shok Na</EM>);
|
|
this post was filled a thousand years later by Jeffrey Sinclair, and later by Delenn.
|
|
<DT><EM>Denn'bok</EM>
|
|
<DD>The Minbari fighting pike, nominally a compact cylinder approximately 1 foot
|
|
in length, but telescoping out to approximately 5 feet upon command. A standard weapon
|
|
of the Rangers.
|
|
<DT><EM>Entil'zha</EM>
|
|
<DD>One of Valen's titles as leader of the Rangers. The title's meaning is unknown;
|
|
it is thought to be of Vorlon origin.
|
|
</DL>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagem"><H3>EM</H3></A>
|
|
Specifies that the text is emphasized.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><EM></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers. Usually, it is rendered as italics.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
A thing can have as much value from <EM>where</EM> it is as from<BR>
|
|
<EM>what</EM> it is.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
A thing can have as much value from <EM>where</EM> it is as from
|
|
<EM>what</EM> it is.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagfont"><H3>FONT</H3></A>
|
|
Specifies the size, font and color of text.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><FONT [SIZE=<EM>n</EM>]
|
|
[FACE="<EM>name1</EM> [,<EM>name2</EM> [...]]" ]
|
|
[COLOR="<EM>colorvalue</EM>"] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG>SIZE=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Specifies a font size between 1 and 7 (7 is largest). A value with a
|
|
+ or - sign in front of it denotes a size relative to the current BASEFONT setting.
|
|
Relative sizes are not cumulative, so two <FONT SIZE=+1> tags in a row will not
|
|
increase the size by 2. Default is no change.<P>
|
|
<STRONG>FACE="<EM>name1</EM> [,<EM>name2</EM> [...]]"</STRONG><P>
|
|
<EM>Optional:</EM> Specifies the font face name to be used. A list of font face names can
|
|
be specified here; if the font face name specified by <EM>name1</EM> is installed on the
|
|
target system, it will be used, otherwise the font face name specified by <EM>name2</EM>
|
|
will be tried if it is specified, and so on. If none of those fonts are available, the
|
|
default font (as configured in the browser) will be used. Default is no change.<P>
|
|
<STRONG>COLOR="<EM>colorvalue</EM>"</STRONG><P>
|
|
<EM>Optional:</EM> Sets the color of the text. <EM>colorvalue</EM> may either be specified
|
|
as a hexadecimal color value or as a standard color name. Default is no change. See also
|
|
<A HREF="#colors">Colors.</A>
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Comparison of font sizes:<P><BR>
|
|
<FONT SIZE=1>Size 1</FONT><BR>
|
|
<FONT SIZE=2>Size 2</FONT><BR>
|
|
<FONT SIZE=3>Size 3</FONT><BR>
|
|
<FONT SIZE=4>Size 4</FONT><BR>
|
|
<FONT SIZE=5>Size 5</FONT><BR>
|
|
<FONT SIZE=6>Size 6</FONT><BR>
|
|
<FONT SIZE=7>Size 7</FONT><P><BR>
|
|
<FONT SIZE=5 FACE="Comic Sans MS, Arial, Helvetica" COLOR="green"><BR>
|
|
This text will be displayed in green Comic Sans MS if you have that font, otherwise either<BR>
|
|
Arial or Helvetica.</FONT><P><BR>
|
|
<FONT SIZE=2 COLOR="#007FFF">A footnote in a cool blue color.</FONT>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Comparison of font sizes:<P>
|
|
<FONT SIZE=1>Size 1</FONT>
|
|
<FONT SIZE=2>Size 2</FONT>
|
|
<FONT SIZE=3>Size 3</FONT>
|
|
<FONT SIZE=4>Size 4</FONT>
|
|
<FONT SIZE=5>Size 5</FONT>
|
|
<FONT SIZE=6>Size 6</FONT>
|
|
<FONT SIZE=7>Size 7</FONT><P>
|
|
<FONT SIZE=5 FACE="Comic Sans MS, Arial, Helvetica" COLOR="green">
|
|
This text will be displayed in green Comic Sans MS if you have that font, otherwise either
|
|
Arial or Helvetica.</FONT><P>
|
|
<FONT SIZE=2 COLOR="#007FFF">A footnote in a cool blue color.</FONT>
|
|
</DL><HR>
|
|
|
|
<A NAME="taghxxx"><H3>H1, H2, H3, H4, H5, H6</H3></A>
|
|
Renders text in heading style. Use H1 through H6 to specify different sizes and styles of
|
|
heading.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><H<EM>n</EM> [ALIGN=LEFT|CENTER|RIGHT] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG><EM>n</EM></STRONG><P>
|
|
<EM>Required:</EM> Sets the heading level. Valid values range from 1 to 6 (1 highest-level
|
|
and usually largest).<P>
|
|
<STRONG>ALIGN=LEFT|CENTER|RIGHT</STRONG><P>
|
|
<EM>Optional:</EM> Sets the alignment of the header text. Default is <STRONG>LEFT</STRONG>.
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>These styles may be rendered differently in different browsers.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<H1>The most general topic</H1><BR>
|
|
<H2>A subhead under that general topic</H2><BR>
|
|
<H3>And a further subhead under that subhead</H3><BR>
|
|
<H4>A further specialization of that subhead</H4><BR>
|
|
<H5>A topic even more specific under these subheads</H5><BR>
|
|
<H6>The most specialized topic of all</H6>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<H1>The most general topic</H1>
|
|
<H2>A subhead under that general topic</H2>
|
|
<H3>And a further subhead under that subhead</H3>
|
|
<H4>A further specialization of that subhead</H4>
|
|
<H5>A topic even more specific under these subheads</H5>
|
|
<H6>The most specialized topic of all</H6>
|
|
</DL><HR>
|
|
|
|
<A NAME="taghr"><H3>HR</H3></A>
|
|
Draws a horizontal rule.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><HR [ALIGN=LEFT|CENTER|RIGHT] [COLOR="<EM>colorvalue</EM>"]
|
|
[NOSHADE] [SIZE=<EM>n</EM>] [WIDTH=<EM>n</EM>] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Forbidden
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG>[ALIGN=LEFT|CENTER|RIGHT]</STRONG><P>
|
|
<EM>Optional:</EM> Draws the rule left-aligned, right-aligned, or centered. The default
|
|
is <STRONG>CENTER</STRONG>.<P>
|
|
<STRONG>COLOR="<EM>colorvalue</EM>"</STRONG><P>
|
|
<EM>Optional:</EM> Sets the color of the rule. <EM>colorvalue</EM> may either be specified
|
|
as a hexadecimal color value or as a standard color name. Default is the standard 3-D color.
|
|
See also <A HREF="#colors">Colors.</A><P>
|
|
<STRONG>NOSHADE</STRONG><P>
|
|
<EM>Optional:</EM> Draws the rule without 3-D shading.<P>
|
|
<STRONG>SIZE=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Specifies the height of the rule in pixels.<P>
|
|
<STRONG>WIDTH=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Specifies the width of the rule, either in pixels, or, if the percent (%)
|
|
sign is appended to the value, as a percentage of total window width. Default is 100%.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Here's a small line (half the width).<HR WIDTH=50%><BR>
|
|
And a tiny green line, off to the right:<HR WIDTH=96 ALIGN=RIGHT COLOR="green" NOSHADE#>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Here's a small line (half the width).<HR WIDTH=50%><BR>
|
|
And a tiny green line, off to the right:<HR WIDTH=96 ALIGN=RIGHT COLOR="green" NOSHADE>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagi"><H3>I</H3></A>
|
|
Renders enclosed text in italics.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><I></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Some of the text on this line will be <I>rendered in italic</I> type.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Some of the text on this line will be <I>rendered in italic</I> type.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagimg"><H3>IMG</H3></A>
|
|
Inserts an image into the text.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><IMG SRC="<EM>location</EM>" [ALIGN=<EM>alignoption</EM>]
|
|
[ALT="text"] [BORDER=<EM>n</EM>] [HEIGHT=<EM>n</EM>] [HSPACE=<EM>n</EM>]
|
|
[VSPACE=<EM>n</EM>] [WIDTH=<EM>n</EM>] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Forbidden
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG>SRC="<EM>location</EM>"</STRONG><P>
|
|
<EM>Required:</EM> Specifies the URL of the picture to be inserted.<P>
|
|
<STRONG>ALIGN=<EM>alignoption</EM></STRONG><P>
|
|
<EM>Optional:</EM> Sets the alignment of the image relative to the surrounding text;
|
|
<EM>alignoption</EM> may be one of the following values:
|
|
<UL>
|
|
<LI><STRONG>TOP</STRONG> - Surrounding text is aligned with the top of the image.
|
|
<LI><STRONG>MIDDLE</STRONG> - Surrounding text is aligned with the middle of the image.
|
|
<LI><STRONG>BOTTOM</STRONG> - Surrounding text is aligned with the bottom of the image.
|
|
<LI><STRONG>LEFT</STRONG> - The picture is drawn as a left-flush "floating image," and text
|
|
flows around it.
|
|
<LI><STRONG>RIGHT</STRONG> - The picture is drawn as a right-flush "floating image," and text
|
|
flows around it.
|
|
</UL><P>
|
|
<STRONG>ALT="text"</STRONG><P>
|
|
<EM>Optional:</EM> Specifies text to be displayed in place of the picture if the browser is
|
|
non-graphical or has images turned off. Some browsers also display this text as a "tooltip"
|
|
element when the mouse is held over the image.<P>
|
|
<STRONG>BORDER=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Specifies the size of a border to be drawn around the image. If the image
|
|
is a hyperlink, the border is drawn in the appropriate hyperlink color. If the image is not
|
|
a hyperlink, the border is invisible.<P>
|
|
<STRONG>HEIGHT=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Along with <STRONG>WIDTH=</STRONG>, specifies the size at which the
|
|
picture is drawn. If the picture's actual dimensions differ from those specified, the
|
|
picture is stretched to match what's specified.<P>
|
|
<STRONG>HSPACE=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Along with <STRONG>VSPACE=</STRONG>, specifies margins for the image.
|
|
Similar to <STRONG>BORDER=</STRONG>, except the margins are not painted with color when the
|
|
image is a hyperlink.<P>
|
|
<STRONG>VSPACE=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Along with <STRONG>HSPACE=</STRONG>, specifies margins for the image.
|
|
Similar to <STRONG>BORDER=</STRONG>, except the margins are not painted with color when the
|
|
image is a hyperlink.<P>
|
|
<STRONG>WIDTH=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Along with <STRONG>HEIGHT=</STRONG>, specifies the size at which the
|
|
picture is drawn. If the picture's actual dimensions differ from those specified, the
|
|
picture is stretched to match what's specified.
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>Specification of <STRONG>HEIGHT=</STRONG> and <STRONG>WIDTH=</STRONG> speeds up display
|
|
of the page, as the browser can then preallocate space for the image and lay out the text
|
|
appropriately before the image data is downloaded.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
This image is positioned <IMG SRC="images/ref32smi.gif" WIDTH=32 HEIGHT=32 ALIGN=BOTTOM><BR>
|
|
with bottom alignment.<P><BR>
|
|
This image is positioned <IMG SRC="images/ref32smi.gif" WIDTH=32 HEIGHT=32 ALIGN=TOP><BR>
|
|
with top alignment.<P><BR>
|
|
This image is positioned <IMG SRC="images/ref32smi.gif" WIDTH=32 HEIGHT=32 ALIGN=MIDDLE><BR>
|
|
with middle alignment.<P><BR>
|
|
<IMG SRC="images/ref64yr.gif" WIDTH=64 HEIGHT=64 HSPACE=5 ALIGN=LEFT><BR>
|
|
This is an image aligned on the left...<P><BR>
|
|
<IMG SRC="images/ref64yr.gif" WIDTH=64 HEIGHT=64 HSPACE=5 ALIGN=RIGHT><BR>
|
|
This is an image aligned on the right...<BR CLEAR=BOTH>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
This image is positioned <IMG SRC="images/ref32smi.gif" WIDTH=32 HEIGHT=32 ALIGN=BOTTOM>
|
|
with bottom alignment.<P>
|
|
This image is positioned <IMG SRC="images/ref32smi.gif" WIDTH=32 HEIGHT=32 ALIGN=TOP>
|
|
with top alignment.<P>
|
|
This image is positioned <IMG SRC="images/ref32smi.gif" WIDTH=32 HEIGHT=32 ALIGN=MIDDLE>
|
|
with middle alignment.<P>
|
|
<IMG SRC="images/ref64yr.gif" WIDTH=64 HEIGHT=64 HSPACE=5 ALIGN=LEFT>
|
|
This is an image aligned on the left...<P>
|
|
<IMG SRC="images/ref64yr.gif" WIDTH=64 HEIGHT=64 HSPACE=5 ALIGN=RIGHT>
|
|
This is an image aligned on the right...<BR CLEAR=BOTH>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagkbd"><H3>KBD</H3></A>
|
|
Specifies text to be entered at the keyboard.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><KBD></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers. Usually, it is rendered
|
|
as fixed-width type.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
To begin adding a new user account, enter the command <KBD>vi /etc/passwd</KBD><BR>
|
|
at the shell prompt.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
To begin adding a new user account, enter the command <KBD>vi /etc/passwd</KBD>
|
|
at the shell prompt.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagli"><H3>LI</H3></A>
|
|
Denotes the beginning of a new list item within a DIR, MENU, OL, or UL block.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><LI [TYPE=<EM>order-type</EM>] [VALUE=<EM>n</EM>] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Optional
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG>TYPE=<EM>order-type</EM></STRONG><P>
|
|
<EM>Optional:</EM> Specifies a new style for an ordered list. The <EM>order-type</EM>
|
|
can be one of these values:
|
|
<UL>
|
|
<LI><STRONG>A</STRONG> - Use upper-case letters.
|
|
<LI><STRONG>a</STRONG> - Use lower-case letters.
|
|
<LI><STRONG>I</STRONG> - Use upper-case Roman numerals.
|
|
<LI><STRONG>i</STRONG> - Use lower-case Roman numerals.
|
|
<LI><STRONG>1</STRONG> - Use Arabic numerals.
|
|
</UL><P>
|
|
<STRONG>VALUE=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Changes the count for an ordered list as it progresses.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Things to get in life:<BR>
|
|
<UL><BR>
|
|
<LI>Good education<BR>
|
|
<LI>Exact change<BR>
|
|
<LI>Happiness<BR>
|
|
<LI>Portable stereo<BR>
|
|
<LI>Sense of self-worth<BR>
|
|
<LI>Account on Electric Minds<BR>
|
|
</UL>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Things to get in life:
|
|
<UL>
|
|
<LI>Good education
|
|
<LI>Exact change
|
|
<LI>Happiness
|
|
<LI>Portable stereo
|
|
<LI>Sense of self-worth
|
|
<LI>Account on Electric Minds
|
|
</UL>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagmenu"><H3>MENU</H3></A>
|
|
Denotes a list of items. Specifies that the following block consists of individual items,
|
|
each beginning with an LI element.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><MENU></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers, but will usually be rendered
|
|
similarly to the UL tag.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Information about Linux:<BR>
|
|
<MENU><BR>
|
|
<LI><A HREF="http://www.linux.com">Linux.com</A><BR>
|
|
<LI><A HREF="http://linuxtoday.com">Linux Today</A><BR>
|
|
<LI><A HREF="http://lwn.net">USA Today</A><BR>
|
|
<LI><A HREF="http://www.freshmeat.net">Freshmeat</A><BR>
|
|
<LI><A HREF="http://slashdot.org">Slashdot</A><BR>
|
|
</MENU>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Information about Linux:
|
|
<MENU>
|
|
<LI><A HREF="http://www.linux.com">Linux.com</A>
|
|
<LI><A HREF="http://linuxtoday.com">Linux Today</A>
|
|
<LI><A HREF="http://lwn.net">Linux Weekly News</A>
|
|
<LI><A HREF="http://www.freshmeat.net">Freshmeat</A>
|
|
<LI><A HREF="http://slashdot.org">Slashdot</A>
|
|
</MENU>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagnobr"><H3>NOBR</H3></A>
|
|
Turns off line breaking. Renders text without line breaks.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><NOBR></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<NOBR>Here's a line of text I don't want to be broken . . .<BR>
|
|
there could be an awful lot of text here and it must stay on one line . . .<BR>
|
|
here's the end of the line.</NOBR>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<NOBR>Here's a line of text I don't want to be broken . . .
|
|
there could be an awful lot of text here and it must stay on one line . . .
|
|
here's the end of the line.</NOBR>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagol"><H3>OL</H3></A>
|
|
Draws lines of text as an ordered list. Specifies that the following block consists of
|
|
individual items, each beginning with an LI tag. The items are numbered.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><OL [START=<EM>n</EM>] [TYPE=<EM>order-type</EM>] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD>
|
|
<STRONG>START=<EM>n</EM></STRONG><P>
|
|
<EM>Optional:</EM> Specifies a starting index number for the list. The default is 1.<P>
|
|
<STRONG>TYPE=<EM>order-type</EM></STRONG><P>
|
|
<EM>Optional:</EM> Specifies a style for the ordered list. The <EM>order-type</EM>
|
|
can be one of these values:
|
|
<UL>
|
|
<LI><STRONG>A</STRONG> - Use upper-case letters.
|
|
<LI><STRONG>a</STRONG> - Use lower-case letters.
|
|
<LI><STRONG>I</STRONG> - Use upper-case Roman numerals.
|
|
<LI><STRONG>i</STRONG> - Use lower-case Roman numerals.
|
|
<LI><STRONG>1</STRONG> - Use Arabic numerals.
|
|
</UL><P>
|
|
The default is to use Arabic numerals.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<OL><BR>
|
|
<LI>Pick up the TV remote control.<BR>
|
|
<LI>Push the POWER button to turn on the TV.<BR>
|
|
<LI>Change to channel 3.<BR>
|
|
<LI>Switch to the VCR remote control.<BR>
|
|
<LI>Push the POWER button to turn on the VCR.<BR>
|
|
<LI>Push the TV/VCR button to switch to the VCR input.<BR>
|
|
<LI>Change to desired channel on the VCR.<BR>
|
|
<LI>Insert a blank tape into the VCR.<BR>
|
|
<LI>Press RECORD.<BR>
|
|
</OL>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<OL>
|
|
<LI>Pick up the TV remote control.
|
|
<LI>Push the POWER button to turn on the TV.
|
|
<LI>Change to channel 3.
|
|
<LI>Switch to the VCR remote control.
|
|
<LI>Push the POWER button to turn on the VCR.
|
|
<LI>Push the TV/VCR button to switch to the VCR input.
|
|
<LI>Change to desired channel on the VCR.
|
|
<LI>Insert a blank tape into the VCR.
|
|
<LI>Press RECORD.
|
|
</OL>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagp"><H3>P</H3></A>
|
|
Inserts a paragraph break and denotes a paragraph.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><P [ALIGN=LEFT|CENTER|RIGHT] ></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Optional
|
|
<DT><STRONG>Parameters</STRONG>
|
|
<DD><STRONG>ALIGN=LEFT|CENTER|RIGHT</STRONG><P>
|
|
Sets the alignment of the paragraph. The align-type can be LEFT, CENTER, or RIGHT.
|
|
Default is left alignment.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
There will be a paragraph break<P>between these two lines.<BR>
|
|
<P ALIGN=RIGHT>Here's a paragraph that will be flush-right.</P><BR>
|
|
And back to normal again.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
There will be a paragraph break<P>between these two lines.
|
|
<P ALIGN=RIGHT>Here's a paragraph that will be flush-right.</P>
|
|
And back to normal again.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagq"><H3>Q</H3></A>
|
|
Sets apart a short quotation in text.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><Q></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<Q>Software is like sex; it's better when it's free.</Q> - Linus Torvalds
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<Q>Software is like sex; it's better when it's free.</Q> - Linus Torvalds
|
|
</DL><HR>
|
|
|
|
<A NAME="tags"><H3>S</H3></A>
|
|
Renders text in strikethrough type.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><S></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
We have a lot of <S>crazy people</S> unique individuals in the Playground.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
We have a lot of <S>crazy people</S> unique individuals in the Playground.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagsamp"><H3>SAMP</H3></A>
|
|
Specifies sample text.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><SAMP></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<SAMP>If one-third of a hive of bees flies to a rose bush, one-fifth flies to a daisy,<BR>
|
|
three times the difference of those two numbers flies to an apple tree, and one bee hovers<BR>
|
|
attracted by both a jasmine and a tulip, how many bees are there in all?</SAMP>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<SAMP>If one-third of a hive of bees flies to a rose bush, one-fifth flies to a daisy,
|
|
three times the difference of those two numbers flies to an apple tree, and one bee hovers
|
|
attracted by both a jasmine and a tulip, how many bees are there in all?</SAMP>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagsmall"><H3>SMALL</H3></A>
|
|
Renders text in smaller type.
|
|
<DL><DT><STRONG>Syntax</STRONG>
|
|
<DD>
|
|
<TT><STRONG><SMALL></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Some of the text on this line will be <SMALL>rendered in small</SMALL> type.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Some of the text on this line will be <SMALL>rendered in small</SMALL> type.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagstrike"><H3>STRIKE</H3></A>
|
|
Renders text in strikethrough type.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><STRIKE></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
We have a lot of <STRIKE>crazy people</STRIKE> unique individuals in the Playground.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
We have a lot of <STRIKE>crazy people</STRIKE> unique individuals in the Playground.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagstrong"><H3>STRONG</H3></A>
|
|
Specifies that the text is strongly emphasized.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><STRONG></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers. Usually, it is rendered as bold face.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
A thing can have as much value from <STRONG>where</STRONG> it is as from<BR>
|
|
<STRONG>what</STRONG> it is.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
A thing can have as much value from <STRONG>where</STRONG> it is as from
|
|
<STRONG>what</STRONG> it is.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagsub"><H3>SUB</H3></A>
|
|
Displays the text in a smaller font, and with its baseline lower than that of the surrounding text.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><SUB></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Fibonacci numbers are computed as follows:<BLOCKQUOTE><BR>
|
|
<EM>F<SUB>0</SUB></EM> = 0<BR><BR>
|
|
<EM>F<SUB>1</SUB></EM> = 1<BR><BR>
|
|
<EM>F<SUB>n</SUB></EM> =<BR>
|
|
<EM>F<SUB>n-2</SUB></EM> + <EM>F<SUB>n-1</SUB></EM><BR>
|
|
for all integer <EM>n</EM>>1</BLOCKQUOTE>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Fibonacci numbers are computed as follows:<BLOCKQUOTE>
|
|
<EM>F<SUB>0</SUB></EM> = 0<BR>
|
|
<EM>F<SUB>1</SUB></EM> = 1<BR>
|
|
<EM>F<SUB>n</SUB></EM> =
|
|
<EM>F<SUB>n-2</SUB></EM> + <EM>F<SUB>n-1</SUB></EM>
|
|
for all integer <EM>n</EM>>1</BLOCKQUOTE>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagsup"><H3>SUP</H3></A>
|
|
Displays the text in a smaller font, and with its baseline higher than that of the surrounding text.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><SUP></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Fermat's Last Theorem states that, for any integer <EM>n</EM> greater than 2,<BR>
|
|
there is no combination of values <EM>x</EM>, <EM>y</EM>,<BR>
|
|
and <EM>z</EM> such that <EM>x<SUP>2</SUP></EM><BR>
|
|
+ <EM>y<SUP>2</SUP></EM> = <EM>z<SUP>2</SUP></EM>.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Fermat's Last Theorem states that, for any integer <EM>n</EM> greater than 2,
|
|
there is no combination of values <EM>x</EM>, <EM>y</EM>,
|
|
and <EM>z</EM> such that <EM>x<SUP>n</SUP></EM>
|
|
+ <EM>y<SUP>n</SUP></EM> = <EM>z<SUP>n</SUP></EM>.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagtt"><H3>TT</H3></A>
|
|
Indicates "teletype" or "typewriter text." Renders text in fixed-width type.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><TT></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers. Usually, it is rendered
|
|
as a fixed-width font.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<TT>This style of text can be useful for code listings.</TT>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<TT>This style of text can be useful for code listings.</TT>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagu"><H3>U</H3></A>
|
|
Displays text as underlined.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><U></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
A thing can have as much value from <U>where</U> it is as from<BR>
|
|
<U>what</U> it is.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
A thing can have as much value from <U>where</U> it is as from
|
|
<U>what</U> it is.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagul"><H3>UL</H3></A>
|
|
Draws lines of text as a bulleted list. Specifies that the following block consists of
|
|
individual items, each beginning with an LI tag. The items are bulleted.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><UL></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>No
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Things to get in life:<BR>
|
|
<UL><BR>
|
|
<LI>Good education<BR>
|
|
<LI>Exact change<BR>
|
|
<LI>Happiness<BR>
|
|
<LI>Portable stereo<BR>
|
|
<LI>Sense of self-worth<BR>
|
|
<LI>Account on Electric Minds<BR>
|
|
</UL>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Things to get in life:
|
|
<UL>
|
|
<LI>Good education
|
|
<LI>Exact change
|
|
<LI>Happiness
|
|
<LI>Portable stereo
|
|
<LI>Sense of self-worth
|
|
<LI>Account on Electric Minds
|
|
</UL>
|
|
</DL><HR>
|
|
|
|
<A NAME="tagvar"><H3>VAR</H3></A>
|
|
Indicates placeholder text for a variable.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><VAR></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Required
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>This may be rendered differently in different browsers. Usually, it is rendered as italics.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
Enter the <VAR>filename</VAR> in the appropriate field in the dialog box.
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
Enter the <VAR>filename</VAR> in the appropriate field in the dialog box.
|
|
</DL><HR>
|
|
|
|
<A NAME="tagwbr"><H3>WBR</H3></A>
|
|
Inserts a soft line break in a block of text formatted using the NOBR tag.
|
|
<DL>
|
|
<DT><STRONG>Syntax</STRONG>
|
|
<DD><TT><STRONG><NOBR></STRONG></TT>
|
|
<DT><STRONG>Allowed in Topic Names</STRONG>
|
|
<DD>Yes
|
|
<DT><STRONG>Closing Tag</STRONG>
|
|
<DD>Optional
|
|
<DT><STRONG>Notes</STRONG>
|
|
<DD>If it is not placed inside a pair of NOBR tags, this tag has no effect.
|
|
<DT><STRONG>Example</STRONG>
|
|
<DD><TT>
|
|
<NOBR>This text will not break anywhere unless I tell it to. The text will<BR>
|
|
just keep on going until it runs off the edge of the screen.<BR>
|
|
<WBR>But I just told it to break here.</NOBR>
|
|
</TT>
|
|
<DT><STRONG>Example Output</STRONG>
|
|
<DD>
|
|
<NOBR>This text will not break anywhere unless I tell it to. The text will
|
|
just keep on going until it runs off the edge of the screen.
|
|
<WBR>But I just told it to break here.</NOBR>
|
|
</DL><HR>
|
|
|
|
<A NAME="colors"><H3>Colors</H3></A>
|
|
When color values are called for in any HTML tag, they may be specified either by name or
|
|
by color value. The following named colors are supported:
|
|
<TABLE>
|
|
<TR VALIGN=MIDDLE>
|
|
<TD ALIGN=RIGHT>
|
|
Black<IMG SRC="images/ref-c0.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Maroon<IMG SRC="images/ref-c4.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Gray<IMG SRC="images/ref-c8.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Red<IMG SRC="images/ref-cc.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=MIDDLE>
|
|
<TD ALIGN=RIGHT>
|
|
Navy<IMG SRC="images/ref-c1.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Purple<IMG SRC="images/ref-c5.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Blue<IMG SRC="images/ref-c9.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Fuchsia<IMG SRC="images/ref-cd.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=MIDDLE>
|
|
<TD ALIGN=RIGHT>
|
|
Green<IMG SRC="images/ref-c2.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Olive<IMG SRC="images/ref-c6.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Lime<IMG SRC="images/ref-ca.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Yellow<IMG SRC="images/ref-ce.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
</TR>
|
|
<TR VALIGN=MIDDLE>
|
|
<TD ALIGN=RIGHT>
|
|
Teal<IMG SRC="images/ref-c3.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Silver<IMG SRC="images/ref-c7.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
Aqua<IMG SRC="images/ref-cb.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
<TD ALIGN=RIGHT>
|
|
White<IMG SRC="images/ref-cf.gif" ALT="" ALIGN=MIDDLE HSPACE=5 VSPACE=2 WIDTH=32 HEIGHT=32>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
Colors may also be specified as a color value in the form "#RRGGBB", where <VAR>RR</VAR>,
|
|
<VAR>GG</VAR>, and <VAR>BB</VAR> represent color intensity values for red, green, and blue,
|
|
respectively, as hexadecimal values from 00 to FF (decimal 0 to 255). For example, the color
|
|
"red" in the table above may also be represented as "#FF0000". In this color example, red
|
|
is set to its highest possible value (hex FF, decimal 255), while green and blue are set to 0.
|
|
<P>Although red-green-blue color values theoretically allow for many thousands of colors,
|
|
the actual number of colors available depends on the color capabilities of the devices the
|
|
document will be viewed on. Many personal computers can display only 16 colors due to the
|
|
type of video display adapter they use.
|
|
<HR>
|
|
|
|
<A NAME="chars"><H3>Special Characters</H3></A>
|
|
In HTML, certain special characters may be written as &<VAR>name</VAR>;, where
|
|
<VAR>name</VAR> is a symbolic name. The most important of these are &lt; (the less-than
|
|
sign, or <), &gt; (the greater-than sign, or >), and &amp; (the ampersand
|
|
itself, or &). These allow you to use characters normally used by HTML to indicate
|
|
formatting commands.<P>
|
|
In addition, special characters may be written as &#<VAR>nnn</VAR>;, where <VAR>nnn</VAR>
|
|
is a decimal character code in the document's character set (usually the ISO Latin-1 character
|
|
set).<P>
|
|
Here follows a listing of additional special characters in HTML. (<STRONG>NOTE:</STRONG>
|
|
Your browser may not display all of these properly.)
|
|
<TABLE BORDER=1>
|
|
<TR>
|
|
<TD>&nbsp; = nonbreaking space</TD>
|
|
<TD>&iexcl; = inverted exclamation mark (¡)</TD>
|
|
<TD>&cent; = cent sign (¢)</TD>
|
|
<TD>&pound; = pound sterling sign (£)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&curren; = general currency sign (¤)</TD>
|
|
<TD>&yen; = yen sign (¥)</TD>
|
|
<TD>&brvbar; = broken vertical bar (¦)</TD>
|
|
<TD>&sect; = section sign (§)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&uml; = umlaut (dieresis) (¨)</TD>
|
|
<TD>&copy; = copyright sign (©)</TD>
|
|
<TD>&ordf; = feminine ordinal (ª)</TD>
|
|
<TD>&laquo; = left angle quotes («)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&not; = not sign (¬)</TD>
|
|
<TD>&shy; = soft hyphen (­)</TD>
|
|
<TD>&reg; = registered sign (®)</TD>
|
|
<TD>&macr; = macron (¯)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&deg; = degree sign (°)</TD>
|
|
<TD>&plusmn; = plus-or-minus sign (±)</TD>
|
|
<TD>&sup2; = superscript 2 (²)</TD>
|
|
<TD>&sup3; = superscript 3 (³)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&acute; = acute accent (´)</TD>
|
|
<TD>&micro; = micro sign (µ)</TD>
|
|
<TD>&para; = paragraph sign (¶)</TD>
|
|
<TD>&middot; = middle dot (·)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&cedil; = cedilla (¸)</TD>
|
|
<TD>&sup1; = superscript 1 (¹)</TD>
|
|
<TD>&ordm; = masculine ordinal (º)</TD>
|
|
<TD>&raquo; = right angle quotes (»)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&frac14; = fraction 1/4 (¼)</TD>
|
|
<TD>&frac12; = fraction 1/2 (½)</TD>
|
|
<TD>&frac34; = fraction 3/4 (¾)</TD>
|
|
<TD>&iquest; = inverted question mark (¿)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&Agrave; = A grave accent (À)</TD>
|
|
<TD>&Aacute; = A acute accent (Á)</TD>
|
|
<TD>&Acirc; = A circumflex (Â)</TD>
|
|
<TD>&Atilde; = A tilde (Ã)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&Auml; = A umlaut (Ä)</TD>
|
|
<TD>&Aring; = A ring (Å)</TD>
|
|
<TD>&AElig; = AE ligature (Æ)</TD>
|
|
<TD>&Ccedil; = C cedilla (Ç)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&Egrave; = E grave accent (È)</TD>
|
|
<TD>&Eacute; = E acute accent (É)</TD>
|
|
<TD>&Ecirc; = E circumflex (Ê)</TD>
|
|
<TD>&Euml; = E umlaut (Ë)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&Igrave; = I grave accent (Ì)</TD>
|
|
<TD>&Iacute; = I acute accent (Í)</TD>
|
|
<TD>&Icirc; = I circumflex (Î)</TD>
|
|
<TD>&Iuml; = I umlaut (Ï)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&ETH; = Icelandic capital Eth (Ð)</TD>
|
|
<TD>&Ntilde; = N tilde (Ñ)</TD>
|
|
<TD>&Ograve; = O grave accent (Ò)</TD>
|
|
<TD>&Oacute; = O acute accent (Ó)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&Ocirc; = O circumflex (Ô)</TD>
|
|
<TD>&Otilde; = O tilde (Õ)</TD>
|
|
<TD>&Ouml; = O umlaut (Ö)</TD>
|
|
<TD>&times; = multiply sign (×)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&Oslash; = O slash (Ø)</TD>
|
|
<TD>&Ugrave; = U grave accent (Ù)</TD>
|
|
<TD>&Uacute; = U acute accent (Ú)</TD>
|
|
<TD>&Ucirc; = U circumflex (Û)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&Uuml; = U umlaut (Ü)</TD>
|
|
<TD>&Yacute; = Y acute accent (Ý)</TD>
|
|
<TD>&THORN; = Icelandic capital Thorn (Þ)</TD>
|
|
<TD>&szlig; = German sharp s (ß)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&agrave; = a grave accent (à)</TD>
|
|
<TD>&aacute; = a acute accent (á)</TD>
|
|
<TD>&acirc; = a circumflex (â)</TD>
|
|
<TD>&atilde; = a tilde (ã)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&auml; = a umlaut (ä)</TD>
|
|
<TD>&aring; = a ring (å)</TD>
|
|
<TD>&aelig; = ae ligature (æ)</TD>
|
|
<TD>&ccedil; = c cedilla (ç)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&egrave; = e grave accent (è)</TD>
|
|
<TD>&eacute; = e acute accent (é)</TD>
|
|
<TD>&ecirc; = e circumflex (ê)</TD>
|
|
<TD>&euml; = e umlaut (ë)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&igrave; = i grave accent (ì)</TD>
|
|
<TD>&iacute; = i acute accent (í)</TD>
|
|
<TD>&icirc; = i circumflex (î)</TD>
|
|
<TD>&iuml; = i umlaut (ï)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&eth; = Icelandic small Eth (ð)</TD>
|
|
<TD>&ntilde; = n tilde (ñ)</TD>
|
|
<TD>&ograve; = o grave accent (ò)</TD>
|
|
<TD>&oacute; = o acute accent (ó)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&ocirc; = o circumflex (ô)</TD>
|
|
<TD>&otilde; = o tilde (õ)</TD>
|
|
<TD>&ouml; = o umlaut (ö)</TD>
|
|
<TD>&divide; = divide sign (÷)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&oslash; = o slash (ø)</TD>
|
|
<TD>&ugrave; = u grave accent (ù)</TD>
|
|
<TD>&uacute; = u acute accent (ú)</TD>
|
|
<TD>&ucirc; = u circumflex (û)</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>&uuml; = u umlaut (ü)</TD>
|
|
<TD>&yacute; = y acute accent (ý)</TD>
|
|
<TD>&thorn; = Icelandic small Thorn (þ)</TD>
|
|
<TD>&yuml; = y umlaut (ÿ)</TD>
|
|
</TR>
|
|
</TABLE><HR>
|
|
|
|
<CENTER><FONT SIZE=-2>Original of this document is copyright © 1997 Durand Communications, All rights
|
|
reserved. Used in Venice by permission.</FONT></CENTER>
|
|
</FONT>
|
|
</BODY>
|
|
</HTML>
|