home   Java Script   MS Access   Perl   HTML   Delphi   C ++   Visual Basic   Java   CGIPerl   MS Excel   Front Page 98   Windows 98   Ms Word   Builder   PHP   Assembler     Link to us   Links    



Appendix B

HTML Quick Reference

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 do not support all the tags listed.

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 on this and other late-breaking changes to the HTML standard.

HTML Tags

These tags are used to create a basic HTML page with text, headings, and lists. An (MS) beside the attribute indicates that it is only supported by Microsoft Internet Explorer.

Comments

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

Structure Tags

Tag Attribute Function
<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.
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>.
HREF="..." The full URL of this document.
Tag Attribute Function
<ISINDEX> Indicates that this document is a gateway script that allows searches.
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.
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.
Tag Attribute Function
<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 dates, and so on. Meta-information is usually in the form of a key/value pair. Used in the document <HEAD>.
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

Tag

Attribute

Function

<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:

A

LIGN="..."

Possible values are CENTER, LEFT, and RIGHT.

Paragraphs and Regions

Tag Attribute Function
<P>...</P> A plain paragraph. The closing tag (</P>) is optional.
ALIGN="..." Align text to CENTER, LEFT, or RIGHT.
<DIV>...</DIV> A region of text to be formatted.
ALIGN="..." Align text to CENTER, LEFT, or RIGHT.

Links

Tag Attribute Function
<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.
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". REL="..." is 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

Tag Attribute Function
<OL>...</OL> An ordered (numbered) list.
TYPE="..." The type of numerals to label the list. Possible values are A, a, I, i, and 1.
START="..." The value with which to start this list.
<UL>...</UL> An unordered (bulleted) list.
TYPE="..." The bullet dingbat to use 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>.
TYPE="..." The type of bullet or number to label this item with. Possible values are DISC, CIRCLE (or ROUND) SQUARE, A, a, I, i, and 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.
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

Tag Attribute Function
<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 (not commonly 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 will be 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

Tag Attribute Function
<HR> A horizontal rule line.
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 will be 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.
Tag Attribute Function
<BR> A line break.
CLEAR="..." Causes the text to stop flowing around any images. Possible values are RIGHT, LEFT, and 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 in an irritating manner.
<FONT>...</FONT> Changes the size of the font for the enclosed text.
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="..." 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 will be used.
<BASEFONT> Sets the default size of the font for the current page.
SIZE="..." The default size of the font, from 1 to 7. Default is 3.

Images, Sounds, and Embedded Media

Tag Attribute Function
<IMG> Inserts an inline image into the document.
ISMAP This image is a clickable image map.
SRC="..." The URL of the image.
ALT="..." A text string that will be displayed in browsers that cannot support images.
ALIGN="..." Determines the alignment of the given image. If LEFT or RIGHT, 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, and 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 height, 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.
Tag Attribute Function
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.
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.)
<SCRIPT> An interpreted script program.
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.
<OBJECT> Inserts an image, video, Java applet, or ActiveX control into a document.

Just a Minute: Usage of the <OBJECT> tag is not yet finalized. Check http://www.w3.org/ for the latest attributes supported by the HTML 3.2 standard.

Tag

Attribute

Function

<APPLET> Inserts a self-running Java applet.
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.
<PARAM> Program-specific parameters. (Always occurs within <APPLET> or <OBJECT> tags.)
NAME="..." The type of information being given to the applet or ActiveX control.
VALUE="..." The actual information to be given to the applet or ActiveX control.
REF="..." Indicates that this <PARAM> tag includes the address or location of the object.
<EMBED> Embeds a file to be read or (Netscape only!) displayed by a plug-in application.


Just a Minute: In addition to the following standard attributes, you can specify applet-specific attributes to be interpreted by the plug-in which displays the embedded object.

Tag Attribute Function
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> Alternate text or images to be shown to users who do not have a plug-in installed.
<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.
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

Tag Attribute Function
<FORM>...</FORM> Indicates an input form.
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.
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 check box 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 check boxes 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 will align (same as with the <IMG> tag).
<TEXTAREA>...</TEXTAREA> Indicates a multi-line text entry form element. Default text can be included.
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="..." Controls text wrapping. Possible values are OFF, VIRTUAL, and
PHYSICAL.
<SELECT>...</SELECT> Creates a menu or scrolling list of possible items.
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.
SELECTED With this attribute included, the <OPTION> will be selected by default in the list.
VALUE="..." The value to submit if this <OPTION> is selected when the form is submitted.

Tables

Tag Attribute Function
<TABLE>...</TABLE> Creates a table that can contain a caption (<CAPTION>) and any number of rows (<TR>).
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.
BGCOLOR="..." Background color of all cells in the table that do not contain their own BACKGROUND or BGCOLOR attribute.
BACKGROUND="..." (MS) Background image to tile within all cells in the table that do not contain their own BACKGROUND or BGCOLOR attribute.
BORDERCOLOR="..." (MS) Border color (used with BORDER="...").
Tag Attribute Function
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 will 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.
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).
ALIGN="..." The horizontal alignment of the contents of the cells within this row. Possible values are LEFT, RIGHT, and CENTER.
Tag Attribute Function
VALIGN="..." The vertical alignment of the contents of the cells within this row. Possible values are TOP, MIDDLE, BOTTOM, and BASELINE.
BGCOLOR="..." Background color of all cells in the row that do not contain their own BACKGROUND or BGCOLOR attributes.
BACKGROUND="..."(MS) Background image to tile within all cells in the row that do not 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.
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.
BGCOLOR="..." Background color of the cell.
BACKGROUND="..." (MS) Background image to tile within the cell.
Tag Attribute Function
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.
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.
BGCOLOR="..." Background color of the cell.
BACKGROUND="..." (MS) Background image to tile within 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="...").

Frames

Tag Attribute Function
<FRAMESET>...</FRAMESET> Divides the main window into a set of frames that can each display a separate document.
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.
BORDER="..." Size of frame border in pixels (0 turns off borders). This tag is Netscape-specific--Microsoft IE uses FRAMEBORDER and FRAMESPACING instead.
FRAMEBORDER="..." (MS) Specifies whether to display a border for a frame. Options are YES and NO.
FRAMESPACING="..." (MS) Space between frames, in pixels.
<FRAME> Defines a single frame within a <FRAMESET>.
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 scrollbars. Possible values are YES, NO, and AUTO.
NORESIZE Prevents the user from resizing this frame (and possibly adjacent frames) with the mouse.
<NOFRAME>...</NOFRAME> Provides an alternative document body in <FRAMESET> documents for browsers that do not support frames (usually encloses <BODY>...</BODY>).

Character Entities

Table B.1 contains the possible numeric and character entities for the ISO-Latin-1 (ISO8859-1) character set. Where possible, the character is shown.
Just a Minute: Not all browsers can display all characters, and some browsers might 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 B.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; Semicolon
< &#60; &lt; Less than
= &#61; Equal 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
[exclamdown] &#161; &iexcl; Inverted exclamation
cents &#162; &cent; Cent sign
[sterling] &#163; &pound; Pound sterling
[currency] &#164; &curren; General currency sign
[yen] &#165; &yen; Yen sign
| &#166; &brvbar; or brkbar; Broken vertical bar
SS &#167; &sect; Section sign
[dieresis] &#168; &uml; Umlaut (dieresis)
" &#169; &copy; (Netscape only) Copyright
ª &#170; &ordf; Feminine ordinal
< &#171; &laquo; Left angle quote, guillemot left
~ &#172; &not; Not sign
- &#173; &shy; Soft hyphen
® &#174; &reg; (Netscape only) Registered trademark
- &#175; &hibar; Macron accent
deg. &#176; &deg; Degree sign
+/- &#177; &plusmn; Plus or minus
2 &#178; &sup2; Superscript two
3 &#179; &sup3; Superscript three
' &#180; &acute; Acute accent
u &#181; &micro; Micro sign
|P &#182; &para; Paragraph sign
. &#183; &middot; Middle dot
[cedilla] &#184; &cedil; Cedilla
1 &#185; &sup1; Superscript one
º &#186; &ordm; Masculine ordinal
> &#187; &raquo; Right angle quote, guillemot right
1/4 &#188; &frac14; Fraction one-fourth
1/2 &#189; &frac12; Fraction one-half
3/4 &#190; &frac34; Fraction three-fourths
¿ &#191; &iquest Inverted question mark
À &#192; &Agrave; Capital A, grave accent
Á &#193; &Aacute; Capital A, acute accent
 &#194; &Acirc; Capital A, circumflex accent
[Atilde] &#195; &Atilde; Capital A, tilde
Ä &#196; &Auml; Capital A, dieresis or umlaut mark
Å &#197; &Aring; Capital A, ring
Æ &#198; &AElig; Capital AE diphthong (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
[Otilde] &#213; &Otilde; Capital O, tilde
Ö &#214; &Ouml; Capital O, dieresis or umlaut mark
x &#215; Multiply sign
o &#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
ß &#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 diphthong (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