Marcajele necesare codificãrii documentelor în HTML





A


Description

Defines a hypertext link for an element.

<A HREF="url">

HREF="url" required. Specifies the URL associated with the parent element. The browser navigates to this location when the parent element is clicked. The end tag </A> is required.

Example

<A HREF="http://www.foosports.com/page1.htm">This is a link to page 1.</A>



AREA

Description

Specifies the shape of a hyperlink "hot spot" in a client-side image.

Syntax


ParameterDescription
ACCESSKEY=keySpecifies an accelerator for the element. Pressing alt-key selects this element in the user's browser. This attribute applies to the BUTTON, CHECKBOX, FILE, PASSWORD, RADIO, RESET, SUBMIT, and TEXT input types.
ALIGN=LEFT | CENTER | RIGHTDisplays the element left flush, right flush, or centered relative to the display or table when TYPE=IMAGE..
ALT=textWhen TYPE=IMAGE, optional text as an alternative to the graphic for rendering in non-graphical environments. Alternate text should be provided whenever the graphic is not rendered. Alternate text is mandatory for Level 0 documents.
DISABLEDUsed to disable an element. This attribute prevents an element from receiving the focus, and causes the element to appear "grayed out."
DYNSRC=urlSpecifies the address of a video clip or VRML world to be displayed in the window. Stands for Dynamic Source. Applies to type=image only.
LOWSRC=urlSpecifies a lower resolution image to display. Applies to type=image only.
MAXLENGTH=nIndicates the maximum number of characters that can be entered into a text control. This attribute applies to the PASSWORD and TEXT input types.
NAME=nameSpecifies the name of the control, bookmark, or application.
READONLYCauses the element's contents to be read only. The INPUT element can still receive the focus. This attribute applies to the PASSWORD and TEXT input types.
SIZE=nSpecifies the size of the control.
SRC=urlSpecifies a URL for the associated file. This attribute applies to the IMAGE type.
TABINDEX=nSets the tab order position for the object. This attribute applies to the BUTTON, CHECKBOX, FILE, PASSWORD, RADIO, RESET, SUBMIT, and TEXT input types.
TYPE=BUTTON | CHECKBOX | FILE | HIDDEN | IMAGE | PASSWORD | RADIO | RESET | SUBMIT | TEXT Specifies the type of intrinsic control. The default is TEXT.
  • BUTTON A button on the HTML form.
  • CHECKBOX Used for simple Boolean attributes or for attributes that can take multiple values at the same time. It is represented by a number of check box fields, each of which has the same name. Each selected check box generates a separate name/value pair in the submitted data, even if this results in duplicate names. The default value for check boxes is on.
  • FILE A file upload element that allows the user to supply a file as the input.
  • HIDDEN No field is presented to the user, but the content of the field is sent with the submitted form. This value can be used to transmit state information about client/server interaction.
  • IMAGE An image field that you can click, causing the form to be immediately submitted. The coordinates of the selected point are measured in pixel units from the upper-left corner of the image, and are returned (along with the other contents of the form) in two name/value pairs. The x-coordinate is submitted under the name of the field with ".x" appended, and the y-coordinate is submitted under the name of the field with ".y" appended. Any VALUE= <INPUT> attribute is ignored. The image itself is specified by the SRC= <INPUT> attribute, exactly as for the <IMG> element.
  • PASSWORD The same as the TEXT input type, except that text is not displayed as the user enters it.
  • RADIO Used for attributes that accept a single value from a set of alternatives. Each radio-button field in the group should be given the same name. Only the selected radio button in the group generates a name/value pair in the submitted data. Radio buttons require an explicit VALUE= <INPUT> attribute.
  • RESET When pressed, this button resets the form's fields to their specified initial values. The label to be displayed on the button may be specified just as for the SUBMIT button.
  • SUBMIT Submits the form. The default label is application-specific. If a SUBMIT button is pressed in order to submit the form, and that button has a NAME attribute specified, then that button contributes a name/value pair to the submitted data. Otherwise, a SUBMIT button makes no contribution to the submitted data.
  • TEXT Used for a single-line text-entry field. Use in conjunction with the SIZE= <INPUT> and MAXLENGTH= &lyINPUT> attributes.
VALUE=valueFor textual/numerical controls, specifies the default value of the control. For Boolean controls, specifies the value to be returned when the control is turned on. This attribute applies to the BUTTON, CHECKBOX, HIDDEN, PASSWORD, RADIO, RESET, SUBMIT, and TEXT input types.

Remarks

Objects can be submitted in forms. The NAME is the identifier of the object tag (i.e., <OBJECT NAME=slider>), and the VALUE is obtained by getting the value of the default property of the control. If any of the following conditions occur, then the object will not become part of the submit string:

Example

<FORM ACTION="http://intranet/survey" METHOD=POST>
<P>Name
<BR><INPUT NAME="CONTROL1" TYPE=TEXT VALUE="Your Name">
<P>Password
<BR><INPUT TYPE="PASSWORD" NAME="CONTROL2">
<P>Color
<BR><INPUT TYPE="RADIO" NAME="CONTROL3" VALUE="0" CHECKED>Red
<INPUT TYPE="RADIO" NAME="CONTROL3" VALUE="1">Green
<INPUT TYPE="RADIO" NAME="CONTROL3" VALUE="2">Blue
<P>Comments
<BR><INPUT TYPE="TEXT" NAME="CONTROL4" SIZE="20,5" MAXLENGTH="250">
<P><INPUT NAME="CONTROL5" TYPE=CHECKBOX CHECKED>Send receipt
<P><INPUT TYPE="SUBMIT" VALUE="OK"><INPUT TYPE="RESET" VALUE="Reset">
</FORM>

See Also

TEXT, <BUTTON>, <TEXTAREA>, <OBJECT>.




LI

Description

Denotes one item of a list. This element is used inside a <MENU>, <OL>, or <UL> block.

Syntax


ParameterDescription
TYPE=1 | a | A | i | IChanges the style of the list.
  • 1 List items are numbered.
  • a List items are labeled with lowercase letters.
  • A List items are labeled with uppercase letters.
  • i List items are labeled with lowercase roman numerals.
  • I List items are labeled with uppercase roman numerals.
  • VALUE=value Changes the count of ordered lists as they progress.

    Remarks

    This element is a block element. The start tag is required, and the end tag is optional.

    Example

    <UL>
    <LI>Art
    <LI>History
    <LI>Literature
    <LI>Sports
    <LI>Entertainment
    <LI>Science
    </UL>

    See Also

    <MENU>, <OL>, <UL>.


    MAP

    Description

    Specifies a collection of hot spots for a client-side image map.

    Syntax


    ParameterDescription
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.
    NAME=nameSpecifies the name of the window.

    Remarks

    Both the start and end tags are required.

    Example

    <IMG SRC="london.gif" USEMAP="#deposits">
    <MAP NAME="deposits">
    <AREA SHAPE="rect" COORDS="29,48,52,70" HREF="dep1.html">
    <AREA SHAPE="rect" COORDS="39,78,152,120" HREF="dep2.html"> </MAP>

    This example shows a client-side image map having two hot spots and an area that is not hot.

    See Also

    <AREA>


    MARQUEE

    Description

    Enables you to create a scrolling text marquee.

    Syntax


    ParameterDescription
    BGCOLOR=colorBackground color behind the element. For a complete list of colors, see the Internet Explorer color table
    DIRECTION=DOWN | LEFT | RIGHT | UP Which direction the text should scroll.
    HEIGHT=nHEIGHT of the MARQUEE in pixels or as a percentage of the screen height.
    HSPACE=nAlong with VSPACE, specifies margins for the element.
    SCROLLAMOUNT=nNumber of pixels the text scrolls between each subsequent drawing of the MARQUEE.
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a tooltip during the onmouseover event.
    VSPACE=nAlong with HSPACE, specifies margins for the element in pixels.
    WIDTH=nReturns the calculated width of the marquee in window coordinates. In HTML, this attribute may be initially set in pixels or percentages.

    Remarks

    Both the start and end tags are required.

    Example

    <MARQUEE DIRECTION=RIGHT BEHAVIOR=SCROLL SCROLLAMOUNT=10 SCROLLDELAY=200> This is a scrolling marquee.</MARQUEE>


    META

    Description

    Provides information about an HTML document to browsers, search engines, and other applications.

    Syntax


    ParameterDescription
    CONTENT=descriptionSpecifies meta-information to be associated with the given name or HTTP response header.
    NAME=nameSpecifies the name of the control, bookmark, or application.
    TITLE=textUsed to provide advisory information.
    URL=urlIf a URL is specifies, the URL will be loaded after the specified time has elapsed.

    Remarks

    This element may only be used within the tag. The start tag is required, and the end tag is optional.



    NOBR

    Description

    Renders text without line breaking.

    Syntax


    ParameterDescription
    TITLE=textUsed to provide advisory information.

    Remarks

    The start tag is required, and the end tag is optional.

    Example

    <NOBR>Here's a line of text I don't want to be broken . . . here's the end of the line./<NOBR>


    NOFRAMES

    Description

    Used to contain HTML for browsers that do not support elements.

    Syntax


    ParameterDescription
    TITLE=textUsed to provide advisory information.

    Remarks

    This element is a block element. Both the start and end tags are required.

    Example

    <FRAMESET>
    <NOFRAMES>You need Internet Explorer 3.0 to view frames!</NOFRAMES> </FRAMESET>


    OL

    Description

    Draws lines of text as an ordered list.

    Syntax


    ParameterDescription
    START=nSpecifies the starting number for a list.
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.
    TYPE=1 | a | A | i | I Changes the style of the list.
    • 1 List items are numbered.
    • a List items are labeled with lowercase letters.
    • A List items are labeled with uppercase letters.
    • i List items are labeled with lowercase roman numerals.
    • I List items are labeled with uppercase roman numerals.

    Remarks

    This element is a block element. Both the start and end tags are required.

    Example

    <OL>
    <LI>This is the first item in the list.
    <LI*gtAnd this is the second item in the list. </OL>

    <OL START=3>
    <LI>This is item number 3. </OL>

    <OL TYPE=A>
    <LI>This is item A. </OL>



    P

    Description

    Denotes a paragraph.

    Syntax


    ParameterDescription
    ALIGN=CENTER | LEFT | RIGHT Displays the element left flush, right flush, or centered relative to the display or table.
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event..

    Remarks

    This element is a block element. The start tag is required, and the end tag is optional.

    Example

    <PThis is a paragraph.</P>



    SMALL

    Description

    Specifies that the enclosed text should be displayed with a relatively smaller font than the current font.

    Syntax


    ParameterDescription
    TITLE=text Used to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.

    Remarks

    Both the start and end tags are required.

    Example

    <SMALL>This text is smaller.</SMALL>



    STRIKE

    Description

    Renders text in strikethrough type.

    Syntax


    ParameterDescription
    TITLE=text Used to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.

    Remarks

    Both the start and end tags are required.

    Example

    <STRIKE>This text has a line through it.</STRIKE>



    STRONG

    Description

    Renders text with a strong emphasis, often shown in boldface.

    Syntax


    ParameterDescription
    TITLE=text Used to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.

    Remarks

    Both the start and end tags are required.

    Example

    <STRONG>This text is strongly emphasized, shown as bold.</STRONG>



    SUB

    Description

    The enclosed text should be displayed in SuperScript and in a smaller font relative to the current font.

    Syntax


    ParameterDescription
    TITLE=text Used to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.

    Remarks

    Both the start and end tags are required.

    Example

    (X<SUB>1</SUB>,Y<SUB>1</SUB>)



    SUP

    Description

    The enclosed text should be displayed in SuperScript and in a smaller font relative to the current font.

    Syntax


    ParameterDescription
    TITLE=text Used to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.

    Remarks

    Both the start and end tags are required.

    Example

    X<SUP>2</SUP> + Y<SUP>2</SUP>)



    TABLE

    Description

    Used to specify that the contained content is organized into a table with rows and columns. Use the <TR.htm>, <TD.htm>, and <TH.htm> elements in the container to create the rows, columns, and cells. The optional <CAPTION.htm>, <THEAD.htm>, <TBODY.htm>, <TFOOT.htm>, <COLGROUP.htm>, and <COL.htm> elements can be used to organize a table and apply attributes across columns and groups of columns.

    Syntax


    ParameterDescription
    ALIGN=CENTER | LEFT | RIGHTSpecifies how the table should be aligned.
    BACKGROUND=urlSpecifies a background picture for the table. The picture is tiled behind the text and graphics in the table, table head, or table cell.
    BGCOLOR=colorSets the background color behind the element. For a complete list of colors, look at the Internet Explorer color table.
    BORDER=nSpecifies the thickness of a border to be drawn around the element.
    BORDERCOLOR=color Sets border color and must be used with the BORDER attribute, except for frames. For a complete list of colors, look at the Internet Explorer color table.
    BORDERCOLORDARK=color Sets independent border color control over one of the two colors used to draw a 3-D border, opposite of BORDERCOLORLIGHT, and must be used with the BORDER attribute.
    BORDERCOLORLIGHT=colorSets independent border color control over one of the two colors used to draw a 3-D border, opposite of BORDERCOLORDARK, and must be used with the BORDER attribute.
    CELLPADDING=nSpecifies the amount of space between the border of the cell and the contents of the cell.
    CELLSPACING=n Specifies the amount of space between cells in a table.
    COLS=n The number of columns in the table.
    HEIGHT=nAlong with WIDTH specifies the size at which the element is drawn. This attribute may be initially set in pixels or percentages.
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.
    WIDTH=nAlong with HEIGHT sets the initial size of the element. This attribute may be initially set in pixels or percentages.

    Remarks

    This element is a block element. Both the start and end tags are required.

    Example

    <TABLE BORDER=1 WIDTH=80%>
    <TR>
    <TH>Heading 1</TH>
    </TR> </TABLE>



    TD

    Description

    Specifies a cell in a table. This element is valid only within a row in a table. You must use a <TR.htm> element before using TD. All attributes are optional.

    Syntax


    ParameterDescription
    ALIGN=CENTER | LEFT | RIGHTDisplays the element left flush, right flush, or centered relative to the display or table.
    BACKGROUND=urlSpecifies a background picture for the table. The picture is tiled behind the text and graphics in the table, table head, or table cell.
    BGCOLOR=colorSets the background color behind the element. For a complete list of colors, look at the Internet Explorer color table.
    BORDERCOLOR=color Sets border color and must be used with the BORDER attribute, except for frames. For a complete list of colors, look at the Internet Explorer color table.
    BORDERCOLORDARK=color Sets independent border color control over one of the two colors used to draw a 3-D border, opposite of BORDERCOLORLIGHT, and must be used with the BORDER attribute.
    BORDERCOLORLIGHT=colorSets independent border color control over one of the two colors used to draw a 3-D border, opposite of BORDERCOLORDARK, and must be used with the BORDER attribute.
    COLSPAN=nSpecifies how many columns in the <TABLE.htm> this cell should span.
    NOWRAPThe NOWRAP attribute is used when you do not want the browser to automatically perform word wrap.
    ROWSPAN=n Specifies how many rows in a this cell should span.
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.
    VALIGN=BASELINE | BOTTOM | CENTER | TOP Displays the elements aligned at the top or bottom within the element.
    • BASELINE Vertical align to the baseline of the font.
    • BOTTOM Vertical align to the bottom of the element
    • MIDDLE Vertical align to the middle of the element.
    • TOP Vertical align to the top of the element.

    Remarks

    This element is a block element. Both the start and end tags are required.



    TEXTAREA

    Description

    Creates a multiline text entry control in which the user can type and edit text. The end tag is required. Any text between the start tag and end tag is used as the initial value for the control.

    Syntax


    ParameterDescription
    ALIGN=ABSBOTTOM | ABSMIDDLE | BASELINE | BOTTOM | LEFT | MIDDLE | RIGHT | TEXTTOP | TOP Specifies the alignment for the control-like element.
    COLS=n Specifies how many characters wide the text area is.
    NAME=nameSpecifies the name of the control, bookmark, or application.
    ROWS=nSpecifies the number of rows tall the text area control should be.
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.
    WRAP=OFF | PHYSICAL | VIRTUALSpecifies how to handle word-wrapping inside the text area.
    • OFF Word-wrapping is disabled (default).
    • PHYSICAL The text is displayed and submitted word-wrapped
    • VIRTUAL The text is displayed word-wrapped, but is submitted as typed

    Remarks

    The default font is fixed pitch. Both the start and end tags are required.



    TH

    Description

    Creates a row or column heading in a table. The element is similar to the <TD.htm> element but emphasizes the text in the cell to distinguish it from text in TD cells. The end tag is optional.

    Syntax


    ParameterDescription
    ALIGN=CENTER | LEFT | RIGHTDisplays the element left flush, right flush, or centered relative to the display or table.
    BACKGROUND=urlSpecifies a background picture for the table. The picture is tiled behind the text and graphics in the table, table head, or table cell.
    BGCOLOR=colorSets the background color behind the element. For a complete list of colors, look at the Internet Explorer color table.
    BORDERCOLOR=color Sets border color and must be used with the BORDER attribute, except for frames. For a complete list of colors, look at the Internet Explorer color table.
    BORDERCOLORDARK=color Sets independent border color control over one of the two colors used to draw a 3-D border, opposite of BORDERCOLORLIGHT, and must be used with the BORDER attribute.
    BORDERCOLORLIGHT=colorSets independent border color control over one of the two colors used to draw a 3-D border, opposite of BORDERCOLORDARK, and must be used with the BORDER attribute.
    COLSPAN=nSpecifies how many columns in the <TABLE.htm> this cell should span.
    NOWRAPThe NOWRAP attribute is used when you do not want the browser to automatically perform word wrap.
    ROWSPAN=n Specifies how many rows in a this cell should span.
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.
    VALIGN=BASELINE | BOTTOM | CENTER | TOP Displays the elements aligned at the top or bottom within the element.
    • BASELINE Vertical align to the baseline of the font.
    • BOTTOM Vertical align to the bottom of the element
    • CENTER Vertical align to the middle of the element.
    • TOP Vertical align to the top of the element.

    Remarks

    This element is a block element. Both the start and end tags are required.



    TITLE

    Description

    Identifies the contents of the document in a global context.

    Syntax


    ParameterDescription
    TITLE=string Used to provide advisory information.

    Remarks

    This element may only be used within the tag. This element is a block element. Both the start and end tags are required.

    Example

    <HEAD>
    <TITLE>"Welcome To Internet Explorer!"</TITLE>
    </HEAD>




    TR

    Description

    Creates a row in a table. The row can contain one or more elements.

    Syntax


    ParameterDescription
    ALIGN=CENTER | LEFT | RIGHTDisplays the element left flush, right flush, or centered relative to the display or table.
    BGCOLOR=colorSets the background color behind the element. For a complete list of colors, look at the Internet Explorer color table.
    BORDERCOLOR=color Sets border color and must be used with the BORDER attribute, except for frames. For a complete list of colors, look at the Internet Explorer color table.
    BORDERCOLORDARK=color Sets independent border color control over one of the two colors used to draw a 3-D border, opposite of BORDERCOLORLIGHT, and must be used with the BORDER attribute.
    BORDERCOLORLIGHT=colorSets independent border color control over one of the two colors used to draw a 3-D border, opposite of BORDERCOLORDARK, and must be used with the BORDER attribute.
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.
    VALIGN=BASELINE | BOTTOM | CENTER | TOP Displays the elements aligned at the top or bottom within the element.
    • BASELINE Vertical align to the baseline of the font.
    • BOTTOM Vertical align to the bottom of the element
    • CENTER Vertical align to the middle of the element.
    • TOP Vertical align to the top of the element.

    Remarks

    Within a row, the following tags are valid:
    <TD.htm>
    <TH.htm>
    This element is a block element.
    Both the start and end tags are required.

    Example

    <TABLE>
    <TR>
    ...
    </TR>
    <TR>
    ...
    </TR>
    </TABLE>




    TT

    Description

    Indicates teletype. Renders text in fixed-width type. The required end tag returns the text formatting to normal.

    Syntax


    ParameterDescription
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.

    Remarks

    Both the start and end tags are required.

    Example

    <TT>Here's some plain text.</TT>




    U

    Description

    Renders underlined text. The required end tag restores the text to normal.

    Syntax


    ParameterDescription
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.

    Remarks

    Both the start and end tags are required.

    Example

    <U>This text is underlined.</U>




    UL

    Description

    Specifies that the following block of text is a bulleted (or unordered) list. Each item begins with a <LI.htm> tag. The end tag is required.

    Syntax


    ParameterDescription
    START=nSpecifies the starting number for a list.
    TITLE=textUsed to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event.
    TYPE=1 | a | A | i | I Changes the style of the list.
    • 1 List items are numbered.
    • a List items are labeled with lowercase letters.
    • A List items are labeled with uppercase letters.
    • i List items are labeled with lowercase roman numerals.
    • I List items are labeled with uppercase roman numerals.

    Remarks

    This element is a block element. Both the start and end tags are required.

    Example

    <UL>
    <LI>This is the first bulleted item in the list.
    <LI>And this is the second bulleted item in the list.
    </UL>




    HTML Character Sets

    Description

    Character sets determine how the bytes that represent the text of your HTML document are translated to readable characters. Microsoft® Internet Explorer interprets the bytes in your document according to the applied character set translations. It interprets numeric character references ("〹") as ISO10646 code points, consistent with the Unicode Standard, version 2.0, and independent of the chosen character set. Named entities ("&") are displayed independently of the chosen character set as well. The display of an arbitrary numeric character reference requires the existence of a font that is able to display that particular character on the user's system. Accordingly, the content in the first column of the following tables may not render as expected on all systems.


    ISO Latin-1 Character Set


    CharacterDecimal codeNamed entityDescription
    ---&#09;---Horizontal tab
    ---&#13;---Carriage Return
    &#32;---Space
    !&#33;---Exclamation mark
    "&#34;"Quotation mark
    #&#35;---Number sign
    $&#36;---Dollar sign
    %&#37;---Percent sign
    &&#38;&ampAmpersand
    '&#39;---Apostrophe
    (&#40;---Left parenthesis
    )&#41;---Right parenthesis
    *&#42;---Asterisk
    +&#43;---Plus sign
    ,&#44;---Comma
    -&#45;---Hypen
    .&#46;---Period (fullstop)
    /&#47;---Solidus (slash)
    0...9&#48;...&#57;---Digit 0...Digit 9
    :&#58;---Colon
    ;&#59;---Semicolon
    <&#60;&ltLess than
    =&#61;---Equals sign
    >&#62;&gtGreater than
    ?&#63;---Question mark
    @&#64;---Commercial at
    A...Z&#65;...&#90;---Capital A...Capital Z
    [&#91;---Left square bracket
    \&#92;---Reverse solidus (backslash)
    ]&#93;---Right square bracket
    ^&#94;---Caret
    _&#95;---Horizontal bar (underscore)
    `&#96;---Acute accent
    a...z&#97;...&#122;---Small a...Small z
    {&#123;---Left curly brace
    |&#124;---Vertical bar
    }&#125;---Right curly brace
    ~&#126;---Tilde
    &#160;&nbsp;Nonbreaking space
    À&#192;&Agrave;Capital A, grave accent
    Á&#193;&Aacute;Capital A, acute accent
    Â&#194;&Acirc;Capital A, circumflex
    Ã&#195;&Atilde;Capital A, tilde
    Ä&#196;&Auml;Capital A, umlaut
    Å&#197;&Aring;Capital A, ring
    È&#200;&Egrave;Capital E, grave accent
    É&#201;&Eacute;Capital E, acute accent
    Ê&#202;&Ecirc;Capital E, circumflex
    Ë&#203;&Euml;Capital E, umlaut
    Ì&#204;&Igrave;Capital I, grave accent
    Í&#205;&Iacute;Capital I, acute accent
    Î&#206;&Icirc;Capital I, circumflex
    Ï&#207;&Iuml;Capital I, umlaut
    Ò&#210;&Ograve;Capital O, grave accent
    Ó&#211;&Oacute;Capital O, acute accent
    Ô&#212;&Ocirc;Capital O, circumflex
    Õ&#213;&Otilde;Capital O, tilde
    Ö&#214;&Ouml;Capital O, umlaut
    ×&#215;&times;Multiply sign
    Ø&#216;&Oslash;Capital O, slash
    Ù&#217;&Ugrave;Capital U, grave accent
    Ú&#218;&Uacute;Capital U, acute accent
    Û&#219;&Ucirc;Capital U, circumflex
    Ü&#220;&Uuml;Capital U, diæresis / umlaut
    Ý&#221;&Yacute;Capital Y, acute accent
    à&#224;&agrave;Small a, grave accent
    á&#225;&aacute;Small a, acute accent
    â&#226;&acirc;Small a, circumflex
    ã&#227;&atilde;Small a, tilde
    ä&#228;&auml;Small a, diæresis / umlaut
    å&#229;&aring;Small a, ring
    æ&#230;&aelig;Small ae ligature
    ç&#231;&ccedil;Small c, cedilla
    è&#232;&egrave;Small e, grave accent
    é&#233;&eacute;Small e, acute accent
    ê&#234;&ecirc;Small e, circumflex
    ë&#235;&euml;Small e, diæresis / umlaut
    ì&#236;&igrave;Small i, grave accent
    í&#237;&iacute;Small i, acute accent
    î&#238;&icirc;Small i, circumflex
    ï&#239;&iuml;Small i, diæresis / umlaut
    ð&#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
    õ&#245;&otilde;Small o, tilde
    ö&#246;&ouml;Small o, diæresis / umlaut
    ÷&#247;&divide;Division sign
    ø&#248;&oslash;Small o, slash
    ù&#249;&ugrave;Small u, grave accent
    ú&#250;&uacute;Small u, acute accent
    û&#251;&ucirc;Small u, circumflex
    ü&#252;&uuml;Small u, diæresis / umlaut
    ý&#253;&yacute;Small y, acute accent
    þ&#254;&thorn;Small thorn, Icelandic
    ÿ&#255;&yuml;Small y, diæresis / umlaut


    Tabelul culorilor

    antiquewhite aqua aquamarine
    azure azure [#F0FFFF] beige
    bisque black blanchedalmond
    blue blueviolet brown
    burlywood cadetblue chartreuse
    chocolate coral cornflowerblue
    cornsilk crimson cyan
    darkblue darkcyan darkgoldenrod
    darkgray darkgreen darkkhaki
    darkmagenta darkolivegreen darkorange
    darkorchid darkred darksalmon
    darkseagreen darkslateblue darkslategray
    darkturquoise darkviolet deeppink
    deepskyblue dimgray dodgerblue
    firebrick floralwhite forestgreen
    fuchsia gainsboro ghostwhite
    gold goldenrod gray
    green greenyellow honeydew
    hotpink indianred indigo
    ivory khaki lavender
    lavenderblush lawngreen lemonchiffon
    lightblue lightcoral lightcyan
    lightgoldenrodyellow lightgreen lightgrey
    lightpink lightsalmon lightseagreen
    lightskyblue lightslategray lightsteelblue
    lightyellow lime limegreen
    linen magenta maroon
    mediumaquamarine mediumblue mediumorchid
    mediumpurple mediumseagreen mediumslateblue
    mediumspringgreen mediumturquoise mediumvioletred
    midnightblue mintcream mistyrose
    moccasin navajowhite navy
    oldlace olive olivedrab
    orange orangered orchid
    palegoldenrod palegreen paleturquoise
    palevioletred papayawhip peachpuff
    peru pink plum
    powderblue purple red
    rosybrown royalblue saddlebrown
    salmon sandybrown seagreen
    seashell sienna silver
    skyblue slateblue slategray
    snow springgreen steelblue
    tan teal thistle
    tomato turquoise violet
    wheat white whitesmoke
    yellow yellowgreen