appendix E

HTML Quick Reference

-by Dick Oliver


CONTENTS


This appendix is a reference to the HTML tags you can use in your documents. Unless otherwise noted, all of the tags listed here are supported by both Microsoft Explorer 3.0 and Netscape Navigator 3.0. Note that some other browsers don't support all the listed tags, and some of the tags listed as (MS) may also be supported in the final shipping version of Netscape 3.0.

The proposed HTML style sheet specification is also not covered here. Refer to the Netscape (http://home.netscape.com/) or Microsoft (http://www.microsoft.com/) Web sites for details about this and other late-breaking changes to the new HTML 3.2 standard.

HTML Tags

These tags are used to create a basic HTML page with text, headings, and lists. An (MS) beside the attribute indicates Microsoft.

Comments

<!- ... -> Creates a comment. Can also be used to hide JavaScript from browsers that do not support it.
<COMMENT>...</COMMENT> The new offical way of specifying comments.

Structure Tags

<HTML>...</HTML> Encloses the entire HTML document.
<HEAD>...</HEAD> Encloses the head of the HTML document.
<BODY>...</BODY> Encloses the body (text and tags) of the HTML document.

Attributes:
BACKGROUND="..." The name or URL of the image to tile on the page background.
BGCOLOR="..." The color of the page background.
TEXT="..." The color of the page's text.
LINK="..." The color of unfollowed links.
ALINK="..." The color of activated links.
VLINK="..." The color of followed links.
BGPROPERTIES="..."(MS) Properties of background image. Currently allows only the value FIXED, which prevents the background image from scrolling.
TOPMARGIN="..."(MS) Top margin of the page, in pixels.
BOTTOMMARGIN="..."(MS) Bottom margin of the page, in pixels.

<BASE> Indicates the full URL of the current document. This optional tag is used within <HEAD>.

Attribute:
HREF="..." The full URL of this document.

<ISINDEX> Indicates that this document is a gateway script that allows searches. 

Attributes:
PROMPT="..." The prompt for the search field.
ACTION="..." Gateway program to which the search string should be passed.

<LINK> Indicates a link between this document and some other document. Generally used only by HTML-generating tools. <LINK> represents a link from this entire document to another, as opposed to <A>, which can create multiple links in the document. Not commonly used. 

Attributes:
HREF="..." The URL of the document to call when the link is activated.
NAME="..." If the document is to be considered an anchor, the name of that anchor.
REL="..." The relationship between the linked-to document and the current document; for example, "TOC" or "Glossary".
rev="..." A reverse relationship between the current document and the linked-to document.
URN="..." A Uniform Resource Number (URN), a unique identifier different from the URL in HREF.
TITLE="..." The title of the linked-to document.
METHODS="..." The method with which the document is to be retrieved; for example, FTP, Gopher, and so on.

<META> Indicates meta-information about this document (information about the document itself); for example, keywords for search engines, special HTTP headers to be used for retrieving this document, expiration date, and so on. Meta-information is usually in a key/value pair form. Used in the document <HEAD>.

Attributes:
HTTP-EQUIV="..." Creates a new HTTP header field with the same name as the attribute's value; for example, HTTP-EQUIV="Expires". The value of that header is specified by the CONTENT attribute.
NAME="..." If meta-data is usually in the form of key/value pairs, NAME indicates the key; for example, Author or ID.
CONTENT="..." The content of the key/value pair (or of the HTTP header indicated by HTTP-EQUIV).

<NEXTID> Indicates the "next" document to this one (as might be defined by a tool to manage HTML documents in series). <NEXTID> is considered obsolete.

Headings and Title

<H1>...</H1> A first-level heading.
<H2>...</H2> A second-level heading.
<H3>...</H3> A third-level heading.
<H4>...</H4> A fourth-level heading.
<H5>...</H5> A fifth-level heading.
<H6>...</H6> A sixth-level heading.
<TITLE>...</TITLE> Indicates the title of the document. Used within <HEAD>.

All heading tags accept the following attribute:

Attribute:
ALIGN="..." Possible values are CENTER, LEFT, and RIGHT.

Paragraphs and Regions

<P>...</P> A plain paragraph. The closing tag (</P>) is optional.

Attribute:
ALIGN="..." Align text to CENTER, LEFT, or RIGHT.

<DIV>...</DIV> A region of text to be formatted.

Attribute:
ALIGN="..." Align text to CENTER, LEFT, or RIGHT.

Links

<A>...</A> With the HREF attribute, creates a link to another document or anchor; with the NAME attribute, creates an anchor that can be linked to.

Attributes:
HREF="..." The URL of the document to be called when the link is activated.
NAME="..." The name of the anchor.
REL="..." The relationship between the linked-to document and the current document; for example, "TOC" or "Glossary" (not commonly used).
rev="..." A reverse relationship between the current document and the linked-to document (not commonly used).
URN="..." A Uniform Resource Number (URN), a unique identifier different from the URL in HREF (not commonly used).
TITLE="..." The title of the linked-to document (not commonly used).
METHODS="..." The method with which the document is to be retrieved; for example, FTP, Gopher, and so on (not commonly used).
TARGET="..." The name of a frame that the linked document should appear in.

Lists

<OL>...</OL> An ordered (numbered) list.

Attributes:
TYPE="..." The type of numerals to label the list. Possible values are A, a, I, i, 1.
START="..." The value with which to start this list.

<UL>...</UL> An unordered (bulleted) list.

Attribute:
TYPE="..." The bullet dingbat to mark list items. Possible values are DISC, CIRCLE (or ROUND), and SQUARE.

<MENU>...</MENU> A menu list of items.
<DIR>...</DIR> A directory listing; items are generally smaller than 20 characters.
<LI> A list item for use with <OL>, <UL>, <MENU>, or <DIR>.

Attributes:
TYPE="..." The type of bullet or number to label this item with. Possible values are DISC, CIRCLE, (or ROUND) SQUARE, A, a, I, i, 1.
VALUE="..." The numeric value this list item should have (affects this item and all below it in <OL> lists).

<DL>...</DL> A definition or glossary list.

Attribute:
COMPACT The COMPACT attribute specifies a formatting that takes less whitespace to present.

<DT> A definition term, as part of a definition list.
<DD> The corresponding definition to a definition term, as part of a definition list.

Character Formatting

<EM>...</EM> Emphasis (usually italic).
<STRONG>...</STRONG> Stronger emphasis (usually bold).
<CODE>...</CODE> Code sample (usually Courier).
<KBD>...</KBD> Text to be typed (usually Courier).
<VAR>...</VAR> A variable or placeholder for some other value.
<SAMP>...</SAMP> Sample text (seldom used).
<DFN>...</DFN> A definition of a term.
<CITE>...</CITE> A citation.
<B>...</B> Boldface text.
<I>...</I> Italic text.
<TT>...</TT> Typewriter (monospaced) font.
<PRE>...</PRE> Preformatted text (exact line endings and spacing are preserved-usually rendered in a monospaced font).
<BIG>...</BIG> Text is slightly larger than normal.
<SMALL>...</SMALL> Text is slightly smaller than normal.
<SUB>...</SUB> Subscript.
<SUP>...</SUP> Superscript.
<STRIKE>...</STRIKE> Puts a strikethrough line in text.

Other Elements

<HR> A horizontal rule line.

Attributes:
SIZE="..." The thickness of the rule, in pixels.
WIDTH="..." The width of the rule, in pixels or as a percentage of the document width.
ALIGN="..." How the rule line is aligned on the page. Possible values are LEFT, RIGHT, and CENTER.
NOSHADE Causes the rule line to be drawn as a solid line instead of a transparent bevel.
COLOR="..." (MS) Color of the horizontal rule.

<BR> A line break.

Attribute:
CLEAR="..." Causes the text to stop flowing around any images. Possible values are RIGHT, LEFT, ALL.

<NOBR>...</NOBR> Causes the enclosed text not to wrap at the edge of the page.
<WBR> Wraps the text at this point only if necessary.
<BLOCKQUOTE>... </BLOCKQUOTE> Used for long quotes or citations.
<ADDRESS>...</ADDRESS> Used for signatures or general information about a document's author.
<CENTER>...</CENTER> Centers text or images.
<BLINK>...</BLINK> Causes the enclosed text to blink irritatingly.
<FONT>...</FONT> Changes the size of the font for the enclosed text.

Attributes:
SIZE="..." The size of the font, from 1 to 7. Default is 3. Can also be specified as a value relative to the current size; for example, +2.
COLOR="..." Changes the color of the text.
FACE="..." (MS) Name of font to use if it can be found on the user's system. Multiple font names can be separated by commas, and the first font on the list that can be found is used.

<BASEFONT> Sets the default size of the font for the current page.

Attribute:
SIZE="..." The default size of the font, from 1 to 7. Default is 3.

Images, Sounds, and Embedded Media

<IMG> Inserts an inline image into the document.

Attributes:
ISMAP This image is a clickable image map.
SRC="..." The URL of the image.
ALT="..." A text string that is displayed in browsers that cannot support images.
ALIGN="..." Determines the alignment of the given image. If LEFT or RIGHT (N), the image is aligned to the left or right column, and all following text flows beside that image. All other values, such as TOP, MIDDLE, BOTTOM, or the Netscape-only TEXTTOP, ABSMIDDLE, BASELINE, and ABSBOTTOM, determine the vertical alignment of this image with other items in the same line.
VSPACE="..." The space between the image and the text above or below it.
HSPACE="..." The space between the image and the text to its left or right.
WIDTH="..." The width, in pixels, of the image. If WIDTH is not the actual width, the image is scaled to fit.
HEIGHT="..." The width, in pixels, of the image. If HEIGHT is not the actual height, the image is scaled to fit.
BORDER="..." Draws a border of the specified value in pixels to be drawn around the image. In the case of images that are also links, BORDER changes the size of the default link border.
LOWSRC="..." The path or URL of an image that will be loaded first, before the image specified in SRC. The value of LOWSRC is usually a smaller or lower resolution version of the actual image.
USEMAP="..." The name of an image map specification for client-side image mapping. Used with <MAP> and <AREA>.
DYNSRC="..." (MS) The address of a video clip or VRML world (dynamic source).
CONTROLS (MS) Used with DYNSRC to display a set of playback controls for inline video.
LOOP="..." (MS) The number of times a video clip will loop. (-1 or INFINITE means to loop indefinitely.)
START="..." (MS) When a DYNSRC video clip should start playing. Valid options are FILEOPEN (play when page is displayed) or MOUSEOVER (play when mouse cursor passes over the video clip.

<BGSOUND> (MS) Plays a sound file as soon as the page is displayed.

Attributes:
SRC="..." The URL of the WAV, AU, or MIDI sound file to embed.
LOOP="..." (MS) The number of times a video clip will loop. (-1 or INFINITE means to loop indefinitely.)

<OBJECT> (MS) Inserts an image, video, Java applet, or ActiveX OLE control into a document.
WIDTH=180> BORDERCOLOR=#000000 BORDER=1> Note

The full syntax for the <OBJECT> tag is not yet completely finalized. Check http://www.w3.org/pub/WWW/TR/WD-object.html and http://www.microsoft.com/intdev/author/ for the latest attributes supported by the HTML 3.2 standard and implemented in Microsoft Internet Explorer.

<EMBED> (Netscape only) Embeds a file to be read or displayed by a plug-in application.

Note
In addition to the following standard attributes, you can specify applet-specific attributes to be interpreted by the plug-in that displays the embedded object.

Attributes:
SRC="..." The URL of the file to embed.
WIDTH="..." The width of the embedded object in pixels.
HEIGHT="..." The height of the embedded object in pixels.
ALIGN="..." Determines the alignment of the media window. Values are the same as for the <IMG> tag.
VSPACE="..." The space between the media and the text above or below it.
HSPACE="..." The space between the media and the text to its left or right.
BORDER="..." Draws a border of the specified size in pixels to be drawn around the media.

<NOEMBED>...</NOEMBED> (N) Alternate text or images to be shown to users who do not have a plug-in installed.
<OBJECT> (MS) Inserts an embedded program, control, or other object.
<MAP>...</MAP> A client-side image map, referenced by <IMG USEMAP="...">. Includes one or more <AREA> tags.
<AREA> Defines a clickable link within a client-side image map.

Attributes:
SHAPE="..." The shape of the clickable area. Currently, only RECT is supported.
COORDS="..." The left, top, right, and bottom coordinates of the clickable region within an image.
HREF="..." The URL that should be loaded when the area is clicked.
NOHREF Indicates that no action should be taken when this area of the image is clicked.

Forms

<FORM>...</FORM> Indicates an input form.

Attributes:
ACTION="..." The URL of the script to process this form input.
METHOD="..." How the form input will be sent to the gateway on the server side. Possible values are GET and POST.
EncTYPE="..." Normally has the value application/x-www-form-urlencoded. For file uploads, use multipart/form-data.
NAME="..." A name by which JavaScript scripts can refer to the form.

<INPUT> An input element for a form.

Attributes:
TYPE="..." The type for this input widget. Possible values are chECKBOX, HIDDEN, RADIO, RESET, SUBMIT, TEXT, SEND FILE, or IMAGE.
NAME="..." The name of this item, as passed to the gateway script as part of a name/value pair.
VALUE="..." For a text or hidden widget, the default value; for a checkbox or radio button, the value to be submitted with the form; for Reset or Submit buttons, the label for the button itself.
SRC="..." The source file for an image.
chECKED For checkboxes and radio buttons, indicates that the widget is checked.
SIZE="..." The size, in characters, of a text widget.
MAXLENGTH="..." The maximum number of characters that can be entered into a text widget.
ALIGN="..." For images in forms, determines how the text and image align (same as with the <IMG> tag).

<TEXTAREA>...</TEXTAREA> Indicates a multiline text entry form element. Default text can be included.

Attributes:
NAME="..." The name to be passed to the gateway script as part of the name/value pair.
ROWS="..." The number of rows this text area displays.
COLS="..." The number of columns (characters) this text area displays.
WRAP="..." (N) Control text wrapping. Possible values are OFF, VIRTUAL, and PHYSICAL.

<SELECT>...</SELECT> Creates a menu or scrolling list of possible items.

Attributes:
NAME="..." The name that is passed to the gateway script as part of the name/value pair.
SIZE="..." The number of elements to display. If SIZE is indicated, the selection becomes a scrolling list. If no SIZE is given, the selection is a pop-up menu.
MULTIPLE Allows multiple selections from the list.

<OPTION> Indicates a possible item within a <SELECT> element.

Attributes:
SELECTED With this attribute included, the <OPTION> is selected by default in the list.
VALUE="..." The value to submit if this <OPTION> is selected when the form is submitted.

Tables

<TABLE>...</TABLE> Creates a table that can contain a caption (<CAPTION>) and any number of rows (<TR>).

Attributes:
BORDER="..." Indicates whether the table should be drawn with or without a border. In Netscape, BORDER can also have a value indicating the width of the border.
CELLSPACING="..." The amount of space between the cells in the table.
CELLPADDING="..." The amount of space between the edges of the cell and its contents.
WIDTH="..." The width of the table on the page, in either exact pixel values or as a percentage of page width.
ALIGN="..." (MS) Alignment (works like IMG ALIGN). Values are LEFT or RIGHT.
BACKGROUND="..." (MS) Background image to tile within all cells in the table that don't contain their own BACKGROUND or BGCOLOR attribute.
BGCOLOR="..." (MS) Background color of all cells in the table that don't contain their own BACKGROUND or BGCOLOR attribute.
BORDERCOLOR="..." (MS) Border color (used with BORDER="...").
BORDERCOLORLIGHT="..." (MS) Color for light part of 3D-look borders (used with BORDER="...").
BORDERCOLORDARK="..." (MS) Color for dark part of 3D-look borders (used with BORDER="...").
VALIGN="..." (MS) Alignment of text within the table. Values are TOP and BOTTOM.
FRAME="..." (MS) Controls which external borders appear around a table. Values are void (no frames), above (top border only), below (bottom border only), hsides (top and bottom), lhs (left-hand side), rhs (right-hand side), vsides (left and right sides), and box (all sides).
RULES="..." (MS) Controls which internal borders appear in the table. Values are none, basic (rules between THEAD, TBODY, and TFOOT only), rows (horizontal borders only), cols (vertical borders only), and all.

<CAPTION>...</CAPTION> The caption for the table.

Attribute:
ALIGN="..." The position of the caption. Possible values are TOP and BOTTOM.

<TR>...</TR> Defines a table row, containing headings and data (<TR> and <TH> tags).

Attributes:
ALIGN="..." The horizontal alignment of the contents of the cells within this row. Possible values are LEFT, RIGHT, and CENTER.
VALIGN="..." The vertical alignment of the contents of the cells within this row. Possible values are TOP, MIDDLE, BOTTOM, and BASELINE.
BACKGROUND="..."(MS) Background image to tile within all cells in the row that don't contain their own BACKGROUND or BGCOLOR attributes.
BGCOLOR="..." Background color of all cells in the row that don't contain their own BACKGROUND or BGCOLOR attributes.
BORDERCOLOR="..."(MS) Border color (used with BORDER="...").
BORDERCOLORLIGHT="..."(MS) Color for light part of 3D-look borders (used with BORDER="...").
BORDERCOLORDARK="..."(MS) Color for dark part of 3D-look borders (used with BORDER="...").

<TH>...</TH> Defines a table heading cell.

Attributes:
ALIGN="..." The horizontal alignment of the contents of the cell. Possible values are LEFT, RIGHT, and CENTER.
VALIGN="..." The vertical alignment of the contents of the cell. Possible values are TOP, MIDDLE, BOTTOM, and BASELINE.
ROWSPAN="..." The number of rows this cell will span.
COLSPAN="..." The number of columns this cell will span.
NOWRAP Does not automatically wrap the contents of this cell.
WIDTH="..." The width of this column of cells, in exact pixel values or as a percentage of the table width.
BACKGROUND="..." (MS) Background image to tile within the cell.
BGCOLOR="..." (MS) Background color of the cell.
BORDERCOLOR="..." (MS) Border color (used with BORDER="...").
BORDERCOLORLIGHT="..." (MS) Color for light part of 3D-look borders (used with BORDER="...").
BORDERCOLORDARK="..." (MS) Color for dark part of 3D-look borders (used with BORDER="...").

<TD>...</TD> Defines a table data cell.

Attributes:
ALIGN="..." The horizontal alignment of the contents of the cell. Possible values are LEFT, RIGHT, and CENTER.
VALIGN="..." The vertical alignment of the contents of the cell. Possible values are TOP, MIDDLE, BOTTOM, and BASELINE.
ROWSPAN="..." The number of rows this cell will span.
COLSPAN="..." The number of columns this cell will span.
NOWRAP Does not automatically wrap the contents of this cell.
WIDTH="..." The width of this column of cells, in exact pixel values or as a percentage of the table width.
BACKGROUND="..." (MS) Background image to tile within the cell.
BGCOLOR="..." (MS) Background color of the cell.
BORDERCOLOR="..." (MS) Border color (used with BORDER="...").
BORDERCOLORLIGHT="..." (MS) Color for light part of 3D-look borders (used with BORDER="...").
BORDERCOLORDARK="..." (MS) Color for dark part of 3D-look borders (used with BORDER="...").

<THEAD> (MS) Begins the header section of a table. The closing </THEAD> tag is optional.
<TBODY> (MS) Begins the body section of a table. The closing </TBODY> tag is optional.
<TFOOT> (MS) Begins the footer section of a table. The closing </TFOOT> tag is optional.
<COL>...</COL> (MS) Sets width and alignment properties for one or more columns.

Attributes:
WIDTH="..." Width of column(s) in pixels or relative width followed by a * ("2*" columns will be twice as wide as "1*" columns, for example).
ALIGN="..." Text alignment within the column(s). Valid values are center, justify, left, and right.
SPAN="..." Number of columns that the properties specified in this <COL> tag apply to.

<COLGROUP>...</COLGROUP> Sets properties of a group of columns all at once (should enclose one or more <COL> tags).

Attributes:
ALIGN="..." Text alignment within the columns. Valid values are center, justify, left, and right.
VALIGN="..." Vertical alignment of text within the columns. Valid values are baseline, bottom, middle, and top.

Frames

<FRAMESET>...</FRAMESET> Divides the main window into a set of frames that can each display a separate document.

Attributes:
ROWS="..." Splits the window or frameset vertically into a number of rows specified by a number (such as 7), a percentage of the total window width (such as 25%), or as an asterisk (*) indicating that a frame should take up all the remaining space or divide the space evenly between frames (if multiple * frames are specified).
COLS="..." Works similar to ROWS, except that the window or frameset is split horizontally into columns.

<FRAME> Defines a single frame within a <FRAMESET>.

Attributes:
SRC="..." The URL of the document to be displayed in this frame.
NAME="..." A name to be used for targeting this frame with the TARGET attribute in <A HREF> links.
<MARGINWIDTH> The amount of space to leave to the left and right side of a document within a frame, in pixels.
<MARGINHEIGHT> The amount of space to leave above and below a document within a frame, in pixels.
SCROLLING="..." Determines whether a frame has scroll bars. Possible values are YES, NO, and AUTO.
NORESIZE Prevents the user from resizing this frame (and possibly adjacent frames) with the mouse.
FRAMEBORDER="..." (MS) Specifies whether to display a border for a frame. Options are YES and NO.
FRAMESPACING="..." (MS) Space between frames, in pixels.

</NOFRAME>...</NOFRAMES> Provides an alternative document body in <FRAMESET> documents for browsers that do not support frames (usually encloses <BODY>...</BODY>).

Scripting and Applets

<APPLET> Inserts a self-running Java applet.

Note
In addition to the following standard attributes, you can specify applet-specific attributes to be interpreted by the Java applet itself.

Attributes:
CLASS="..." The name of the applet.
SRC="..." The URL of the directory where the compiled applet can be found (should end in a slash / as in "http://mysite/myapplets/"). Do not include the actual applet name, which is specified with the CLASS attribute.
ALIGN="..." Indicates how the applet should be aligned with any text that follows it. Current values are TOP, MIDDLE, and BOTTOM.
WIDTH="..." The width of the applet output area in pixels.
HEIGHT="..." The height of the applet output area in pixels.

<SCRIPT> An interpreted script program.

Attributes:
LANGUAGE="..." Currently only JAVASCRIPT is supported by Netscape. Both JAVASCRIPT and VBSCRIPT are supported by Microsoft.
SRC="..." Specifies the URL of a file that includes the script program.

Marquees

<MARQUEE>...</MARQUEE> (MS) Displays text in a scrolling marquee.

Attributes:
WIDTH="..." The width of the embedded object in pixels or a percentage of window width.
HEIGHT="..." The height of the embedded object in pixels or a percentage of window height.
ALIGN="..." Determines the alignment of the text outside the marquee. Values are TOP, MIDDLE, and BOTTOM.
BORDER="..." Draws a border of the specified size in pixels to be drawn around the media.
BEHAVIOR="..." How the text inside the marquee should behave. Options are SCROLL (continuous scrolling), SLIDE (slide text in and stop), and ALTERNATE (bounce back and forth).
BGCOLOR="..." Background color for the marquee.
DIRECTION="..." Direction for text to scroll (LEFT or RIGHT).
VSPACE="..."
Space above and below the marquee, in pixels.
HSPACE="..." Space on each side of the marquee, in pixels.
SCROLLAMOUNT="..." Number of pixels to move each time text in the marquee is redrawn.
SCROLLDELAY="..." Number of milliseconds between each redraw of marquee text.
LOOP="..." (MS) The number of times marquee will loop. (-1 or INFINITE means to loop indefinitely.)

Character Entities

Table E.1 contains the possible numeric and character entities for the ISO-Latin-1 (ISO8859-1) character set. Where possible, the character is shown.

Note
Not all browsers can display all characters, and some browsers may even display characters different from those that appear in the table. Newer browsers seem to have a better track record for handling character entities, but be sure to test your HTML files extensively with multiple browsers if you intend to use these entities.

Table E.1. ISO-Latin-1 character set.

Character
Numeric Entity
Character Entity (if any)
Description
&#00;-&#08;
 
Unused
 
&#09;
 
Horizontal tab
 
&#10;
 
Line feed
 
&#11;-&#31;
 
Unused
 
&#32;
 
Space
!
&#33;
 
Exclamation mark
"
&#34;
&quot;
Quotation mark
#
&#35;
 
Number sign
$
&#36;
 
Dollar sign
%
&#37;
 
Percent sign
&
&#38;
&amp;
Ampersand
'
&#39;
 
Apostrophe
(
&#40;
 
Left parenthesis
)
&#41;
 
Right parenthesis
*
&#42;
 
Asterisk
+
&#43;
 
Plus sign
,
&#44;
 
Comma
-
&#45;
 
Hyphen
.
&#46;
 
Period (fullstop)
/
&#47;
 
Solidus (slash)
0-9
&#48;-&#57;
 
Digits 0-9
:
&#58;
 
Colon
;
&#59;
 
Semi-colon
<
&#60;
&lt;
Less than
=
&#61;
 
Equals sign
>
&#62;
&gt;
Greater than
?
&#63;
 
Question mark
@
&#64;
 
Commercial at
A-Z
&#65;-&#90;
 
Letters A-Z
[
&#91;
 
Left square bracket
\
&#92;
 
Reverse solidus (backslash)
]
&#93;
 
Right square bracket
^
&#94;
 
Caret
-
&#95;
 
Horizontal bar
`
&#96;
 
Grave accent
a-z
&#97;-&#122;
 
Letters a-z
{
&#123;
 
Left curly brace
|
&#124
 
Vertical bar
}
&#125;
 
Right curly brace
~
&#126;
 
Tilde
&#127;-&#160;
 
Unused
¡
&#161;
 
Inverted exclamation
¢
&#162;
 
Cent sign
£
&#163;
 
Pound sterling
¤
&#164;
 
General currency sign
¥
&#165;
 
Yen sign
|
&#166;
 
Broken vertical bar
§
&#167;
 
Section sign
¨
&#168;
 
Umlaut (dieresis)
©
&#169;
 
Copyright
ª
&#170;
 
Feminine ordinal
&#171;
 
Left angle quote, guillemet left
¬
&#172;
 
Not sign
-
&#173;
 
Soft hyphen
®
&#174;
 
Registered trademark
¯
&#175;
 
Macron accent
°
&#176;
 
Degree sign
±
&#177;
 
Plus or minus
2
&#178;
 
Superscript two
3
&#179;
 
Superscript three
´
&#180;
 
Acute accent
m
&#181;
 
Micro sign
&#182;
 
Paragraph sign
·
&#183;
 
Middle dot
¸
&#184;
 
Cedilla
1
&#185;
 
Superscript one
º
&#186;
 
Masculine ordinal
&#187;
 
Right angle quote, guillemet right
1/4
&#188;
 
Fraction one-fourth
1/2
&#189;
 
Fraction one-half
3/4
&#190;
 
Fraction three-fourths
¿
&#191;
 
Inverted question mark
À
&#192;
&Agrave;
Capital A, grave accent
Á
&#193;
&Aacute;
Capital A, acute accent
Â
&#194;
&Acirc;
Capital A, circumflex accent
Ã
&#195;
&Atilde;
Capital A, tilde
Ä
&#196;
&Auml;
Capital A, dieresis or umlaut mark
Å
&#197;
&Aring;
Capital A, ring
Æ
&#198;
&AElig;
Capital AE dipthong (ligature)
Ç
&#199;
&Ccedil;
Capital C, cedilla
È
&#200;
&Egrave;
Capital E, grave accent
É
&#201;
&Eacute;
Capital E, acute accent
Ê
&#202;
&Ecirc;
Capital E, circumflex accent
Ë
&#203;
&Euml;
Capital E, dieresis or umlaut mark
Ì
&#204;
&Igrave;
Capital I, grave accent
Í
&#205;
&Iacute;
Capital I, acute accent
Î
&#206;
&Icirc;
Capital I, circumflex accent
Ï
&#207;
&Iuml;
Capital I, dieresis or umlaut mark
q
&#208;
&ETH;
Capital Eth, Icelandic
Ñ
&#209;
&Ntilde;
Capital N, tilde
Ò
&#210;
&Ograve;
Capital O, grave accent
Ó
&#211;
&Oacute;
Capital O, acute accent
Ô
&#212;
&Ocirc;
Capital O, circumflex accent
Õ
&#213;
&Otilde;
Capital O, tilde
Ö
&#214;
&Ouml;
Capital O, dieresis or umlaut mark
¥
&#215;
 
Multiply sign
Ø
&#216;
&Oslash;
Capital O, slash
Ù
&#217;
&Ugrave;
Capital U, grave accent
Ú
&#218;
&Uacute;
Capital U, acute accent
Û
&#219;
&Ucirc;
Capital U, circumflex accent
Ü
&#220;
&Uuml;
Capital U, dieresis or umlaut mark
´Y
&#221;
&Yacute;
Capital Y, acute accent
t
&#222;
&THORN;
Capital THORN, Icelandic
b
&#223;
&szlig;
Small sharp s, German (sz ligature)
à
&#224;
&agrave;
Small a, grave accent
á
&#225;
&aacute;
Small a, acute accent
â
&#226;
&acirc;
Small a, circumflex accent
ã
&#227;
&atilde;
Small a, tilde
ä
&#228;
&aauml;
Small a, dieresis or umlaut mark
å
&#229;
&aring;
Small a, ring
æ
&#230;
&aelig;
Small ae dipthong (ligature)
ç
&#231;
&ccedil;
Small c, cedilla
è
&#232;
&egrave;
Small e, grave accent
é
&#233;
&eacute;
Small e, acute accent
ê
&#234;
&ecirc;
Small e, circumflex accent
ë
&#235;
&euml;
Small e, dieresis or umlaut mark
ì
&#236;
&igrave;
Small i, grave accent
í
&#237;
&iacute;
Small i, acute accent
î
&#238;
&icirc;
Small i, circumflex accent
ï
&#239;
&iuml;
Small i, dieresis or umlaut mark
u
&#240;
&eth;
Small eth, Icelandic
ñ
&#241;
&ntilde;
Small n, tilde
ò
&#242;
&ograve;
Small o, grave accent
ó
&#243;
&oacute;
Small o, acute accent
ô
&#244;
&ocirc;
Small o, circumflex accent
õ
&#245;
&otilde;
Small o, tilde
ö
&#246;
&ouml;
Small o, dieresis or umlaut mark
÷
&#247;
 
Division sign
ø
&#248;
&oslash;
Small o, slash
ù
&#249;
&ugrave;
Small u, grave accent
ú
&#250;
&uacute;
Small u, acute accent
û
&#251;
&ucirc;
Small u, circumflex accent
ü
&#252;
&uuml;
Small u, dieresis or umlaut mark
´y
&#253;
&yacute;
Small y, acute accent
w
&#254;
&thorn;
Small thorn, Icelandic
ÿ
&#255;
&yuml;
Small y, dieresis or umlaut mark