Amethyst
view release on metacpan or search on metacpan
factpacks/html.fact view on Meta::CPAN
html <DFN> => <Definition> The definition tag defines text that defines a term -- many browsers will display it in italics, though others will ignore it.
example <DFN> => It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag. <DFN> text </DFN>
html <DIR> => <Directory List> The directory list tag introduces a directory list, which is made up of List Item (LI) tags and does not include bullets or numbers before them. See: <DIR> 2, 3 & 4
html <DIR> 2 => The items should be short so that they can be arranged into columns. For a bulleted list use UL.
html <DIR> 3 => For a numbered list use OL. For a list without bullets or numbers that is not arranged into columns use MENU.
html <DIR> 4 => In HTML 3.0, the same effect can be achieved with <UL PLAIN WRAP=HORIZ>. The DIR tag will probably be obsolete some day, so use UL.
example <DIR> => <DIR> list entries </DIR> & <DIR COMPACT> list entries </DIR>
html <DIR COMPACT> => The COMPACT attribute instructs the browser to reduce the space occupied by the list.
example <DIR COMPACT> => <DIR COMPACT> list entries </DIR>
html <DIV> => <Division> The division tag is used to divide a document up into different sections, such as chapters, sections, abstract, and appendix.
example <DIV> => <DIV ALIGN=align> & <DIV CLASS=class> & <DIV CLASS=class NOWRAP> & <DIV =clear> & <DIV =lang>
html <DIV ALIGN> => The ALIGN attribute can be one of LEFT, RIGHT, or CENTER. Example: <DIV ALIGN=align>
html <DIV CLASS> => The CLASS attribute that specifies what section this is. Example: <DIV CLASS=class>
html <DIV NOWRAP> => NOWRAP attribute stops the browser from wrapping except where <BR>'s are included in the document. Example: <DIV CLASS=class NOWRAP>
html <DIV =lang> => Indicates the ISO standard language. Enter the standard abbreviation to indicate the language of the element. ( LANG=iso )
html <DL> => The definition list tag introduces a definition list or glossary, which is made up of term (DT) and definition (DD) items. The </DT> and </DD> tags are optional. See: <DL> 2
html <DL> 2 => Typically the definitions are indented under each term, with no blank lines around them. A list heading (LH) may be included before the first definition term.
example <DL> => <DL> list entries </DL> & <DL COMPACT> list entries </DL> & <DT> term & <DD> definition
html <DL COMPACT> => If COMPACT was specified (and the terms are short) the terms and definitions are on the same line. Do not use multiple DD elements for the same DT -- instead use BR within the DD.
example <DL COMPACT> => <DL COMPACT> list entries </DL>
html <DT> => <Definition Term> See: <DL>
html <DD> => <Definition Definition> Do not use multiple DD elements for the same DT -- instead use BR within the DD. See: <DL>
html <EM> => <Emphasized> The emphasized tag defines text that should be emphasized -- most browsers will display it in italics. See: <EM> 2
html <EM> 2 => It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag.
example <EM> => <EM> text </EM>
html <EMBED> => The embed element is used to embed a plugin into a document. The OBJECT tag can also be used to embed objects. See also: <EMBED attributes>
html <EMBED attributes> => SCR, HEIGHT, WIDTH, UNITS, NAME, OPTIONAL PARAMETER & PALETTE
example <EMBED> => <EMBED attributes> alternate HTML </EMBED>
html <EMBED SCR> => ( SRC="URL" ) "URL" identifies the location of the object to be embedded.
html <EMBED HEIGHT> => ( HEIGHT=number ) This specifies the height of the object, according to the UNITS attribute.
html <EMBED WIDTH> => ( WIDTH=number ) This specifies the width of the object, according to the UNITS attribute.
html <EMBED UNITS> => ( UNITS=units ) Here units is one of pixels, meaning the width and height are measured in pixels, or en, meaning the width and height are measured in en spaces.
html <EMBED NAME> => ( NAME=text ) This indicates the name used by other objects or elements to refer to this object.
html <EMBED OPTIONAL PARAMETER> => ("OPTIONAL PARAMETER"=value) This specifies any parameters that are specific to the object. Put the name of the parameter in place of "OPTIONAL PARAMETER".
html <EMBED PALETTE> => ( PALETTE=#rgb|#rgb ) Sets the foreground or background color. The first colour is the foreground.
html <FIG> => <Figure> The figure element is an improvement over the inline image used in HTML 2.0 for a variety of reasons. See: <FIG> 2, 3, & 4
html <FIG> 2 => The text used to describe the figure for non-graphical browsers can contain markup tags & a separate credit and caption will be displayed by both graphical and non-graphical browsers
html <FIG> 3 => It also makes imagemaps much easier to code & independent of the server. (See the OBJECT and MAP tags for an alternate to this tag)
html <FIG> 4 => At the moment it isn't clear whether the built-in image maps of FIG or the client-side image maps of IMG with a USEMAP attribute will emerge as the long term alternative to server side image maps.
example <FIG> => <FIG attributes> figure-content </FIG>
html <FIG attributes> => The attributes for the <FIG> tag: SRC, ALIGN, HEIGHT, WIDTH, UNITS, NOFLOW & IMAGEMAP
html <FIG SRC> => ( SRC="URL" ) "URL" identifies the image source, typically a GIF or JPEG file.
html <FIG ALIGN> => (ALIGN="alignment") "alignment" should be one of TOP, MIDDLE, or BOTTOM. This causes the top, middle, or bottom of the image to be aligned with the text on the line containing the IMG tag. See: <FIG ALIGN> 2
html <FIG ALIGN> 2 => For Netscape: "alignment" should be one of LEFT, RIGHT, TOP, TEXTTOP, MIDDLE, ABSMIDDLE, BASELINE, BOTTOM, or ABSBOTTOM.
html <FIG HEIGHT> => ( HEIGHT=number ) This specifies the height of the image, according to the UNITS attribute.
html <FIG WIDTH> => ( WIDTH=number ) This specifies the width of the image, according to the UNITS attribute.
html <FIG UNITS> => (UNITS=units ) Here units is one of pixels, meaning the width and height are measured in pixels, or en, meaning the width and height are measured in en spaces. See:<FIG> 2
html <FIG UNITS> 2 => These units are not used for the shape co-ordinates of any anchor tags in the figure.
html <FIG NOFLOW> => Stops text from flowing around the figure.
html <FIG IMAGEMAP> => ( IMAGEMAP="URL" ) Points to a script that handles clicks and drags.
html <SHAPE attribute> => One of: Defualt, Circle ( x, y, r ), Rect ( x, y, w, h ) & Polygon ( x1, y1, x2, y2, ... )
html <FN> => <Footnote> The footnote tag defines a footnote, ideally displayed in a pop-up window. The text that refers to this footnote does so with a standard anchor tag using anchor-name.
example <FN> => <FN ID=anchor-name> text </FN>
html <FONT> => The font tag defines text with a smaller or larger font than usual. The normal font size corresponds to 3; smaller values of number will produce a smaller font, and larger values of number will produce a larger font. See: <FONT> 2
html <FONT> 2 => If number has a sign (for example +1), the font will be changed relative to the BASEFONT.
example <FONT> => <FONT SIZE=number> & <FONT COLOR="#RRGGBB"> & <FONT COLOR="colorname"> & <FONT FACE="facename1, facename2...">
html <FONT COLOR> => The COLOR attribute allows you to change the colour of the text.
example <FONT COLOR> => <FONT COLOR="#RRGGBB"> & <FONT COLOR="colorname">
html <FONT FACE> => The FACE attribute specifies the face to be used, such as Arial or Courier. If multiple names are specified, the first one listed that is installed on the client machine is used.
example <FONT FACE> => <FONT FACE="facename1, facename2...">
html <FORM> => The form tag introduces a form, which is made up of INPUT elements, described in the sections that follow. See: <FORM> 2
html <FORM> 2 => A form may be inside structural HTML tags & may also contain structural tags. Using tables and other elements a form can take on various shapes and looks.
example <FORM> => <FORM ACTION=action base> form tags </FORM> & <FORM METHOD=method> form tags </FORM> & <FORM ENCTYPE=media type> form tags </FORM>
html <FORM ACTION> => The ACTION attribute defaults to the document's base address.
example <FORM ACTION> => <FORM ACTION=action base> form tags </FORM> & <FORM ACTION=action base TARGET="target window name"> form tags </FORM>
html <FORM METHOD> => The METHOD attribute can be GET or POST. GET specifies a query form, used to get data from a server. See: <FORM METHOD> 2
html <FORM METHOD> 2 => POST specifies a form that gives information to the server and perhaps causes a database to be updated or a message to be sent.
example <FORM METHOD> => <FORM METHOD=method> form tags </FORM>
html <FORM ENCTYPE> => See: example <FORM ENCTYPE>
example <FORM ENCTYPE> => <FORM ENCTYPE=media type> form tags </FORM>
html <FORM SCRIPT> => The SCRIPT attribute points to a script to be run. The browser must be able to run the type of script that is specified.
example <FORM SCRIPT> => <FORM SCRIPT=URL> form tags </FORM>
html <FRAME> => The frame tag appears inside the FRAMESET tag and specifies one frame in the frameset.
example <FRAME> => <FRAME attributes>
html <FRAME attributes> => One or all of these: SRC, NAME, MARGINWIDTH, MARGINHEIGHT, SCROLLING, NORESIZE, FRAMEBORDER, FRAMESPACING & ALIGN
html <FRAME SRC> => (SRC="URL") The URL of the source document to be displayed in this frame. If the frame does not specify a source it will be displayed as blank space.
html <FRAME NAME> => (NAME="window name") Here "window name" is the name associated with this frame. It can be used by the TARGET attribute in the A, BASE, AREA, and FORM tags to target this frame.
html <FRAME MARGINWIDTH> => ( MARGINWIDTH=number ) Here number is the left and right margin thickness in pixels.
html <FRAME MARGINHEIGHT> => ( MARGINHEIGHT=number ) Here number is the top and bottom margin thickness in pixels.
html <FRAME SCROLLING> => (SCROLLING=type) Here type is one of yes, no or auto. It specifies if the frame is to have a scroll bar: auto (the default) means the browser will decide.
html <FRAME NORESIZE> => Stops the user from resizing the frame..
html <FRAME FRAMEBORDER> => (FRAMEBORDER=yes/no) Specifies if the border should be displayed.
html <FRAME FRAMESPACING> => (FRAMESPACING=number) Here number is the spacing between frames in pixels.
html <FRAME ALIGN> => (ALIGN = "alignment") One of: LEFT, RIGHT, TOP, TEXTTOP, MIDDLE, ABSMIDDLE, BASELINE, BOTTOM, or ABSBOTTOM.
html <FRAMESET> => The FRAMESET tag replaces the BODY tag in a document and is used to split the documents window into a set of smaller frames. See: html <FRAMESET> 2
html <FRAMESET> 2 => FRAMESET tags can be nested to create more complicated frame layouts. NOFRAME tags can also be placed in a frameset.
example <FRAMESET> => <FRAMESET attributes> frame tags </FRAMESET>
html <FRAMESET attributes> => The attributes for the tag <FRAMESET> are: ROWS & COLS
html <FRAMESET ROWS> => (ROWS="row heights") Here "row heights" specifies a list of values for the rows, each one can be specified as a percentage, a pixel value or as "*". See: html <FRAMESET ROWS> 2
html <FRAMESET ROWS> 2 => The frameset will be split vertically into frames based on these values. Rows with "*"'s in them will have any remaining space split between them.
html <FRAMESET COLS> => (COLS="column widths") Here "column widths" specifies a list of values for the columns. The width of each column can be specified as a percentage, a pixel value or as "*". See: html <FRAMESET COLS> 2
html <FRAMESET COLS> 2 => The frameset will be split into frames based on these values. Columns with a width of "*" will split the space that is not assigned to other columns.
html <H1> => The heading 1 tag defines a level 1 heading. It is typically shown in a very large bold font with several blank lines around it, and is used by automatic indexers to describe a page.
example <H1> => <H1> text </H1> & <H1 ALIGN=alignment > text </H1> & <H1 SRC="URL" > text </H1> & <H1 DINGBAT="entity-name" > text </H1>
html <H1 attributes> => The attributes for the HTML tag <H1> are: ALIGN, SRC, DINGBAT, NOWRAP & CLEAR
html <H1 ALIGN> => The alignment attribute can be LEFT, RIGHT, or CENTER -- it defines the placement of the header on the screen. <H1 ALIGN=alignment > text </H1>
html <H1 SRC> => The SRC attribute identifies a graphic image to be embedded before the header text. <H1 SRC="URL" > text </H1>
html <H1 DINGBAT> => The DINGBAT attribute identifies an iconic entity to be embedded. <H1 DINGBAT="entity-name" > text </H1>
html <H1 NOWRAP> => The NOWRAP attribute prevents the browser from breaking long header lines; use a <BR> to break those lines yourself. <H1 NOWRAP> text </H1>
html <H1 CLEAR> => The clear attribute is used to position a header after a graphic: it can be LEFT, RIGHT, or ALL & specifies which margin should be clear. <H1 CLEAR=clear > text </H1>
html <H2> => The heading 2 tag defines a level 2 heading. It is typically shown in a large bold font with several blank lines around it. See: <H1 attributes>
example <H2> => <H2> text </H2>
html <H3> => The heading 3 tag defines a level 3 heading. It is typically shown in a large italic font, slightly indented, with blank lines around it. See: <H1 attributes>
example <H3> => <H3> text </H3>
html <H4> => The heading 4 tag defines a level 4 heading. It is typically shown in a bold font, indented more than an level 3 heading, with blank lines around it. See: <H1 attributes>
example <H4> => <H4> text </H4>
html <H5> => The heading 5 tag defines a level 5 heading. It is typically shown in an italic font, indented the same as a level 4 heading, with a blank line above it. See: <H1 attributes>
example <H5> => <H5> text </H5>
html <H6> => The heading 6 tag defines a level 6 heading. It is typically shown in a normal font, indented more than a level 5 heading, with a blank line above it. See: <H1 attributes>
example <H6> => <H6> text </H6>
html <HEAD> => The head tag introduces text that describes an HTML document. Most documents have only a TITLE tag in the head section.
example <HEAD> => <HEAD> head-section </HEAD>
html <HR> => <Horizontal Rule> The horizontal rule tag causes a horizontal line to be drawn across the screen. There is no </HR> tag.
html <HTML> => The HTML tag defines an HTML document. The <HTML> tag should be the first in the entire document, and the </HTML> tag should be the last.
example <HTML> => <HTML> entire-document </HTML>
html <I> => <Italic> The italic tag defines text that should be shown in italics. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag
example <I> => <I> text </I>
html <IFRAME> => <Frame - Floating> The IFRAME tag defines a floating frame, and the end tag is required.
example <iframe> => <IFRAME attributes> frame data <IFRAME>
html <IFRAME attributes> => ALIGN, FRAMEBORDER, HEIGHT, MARGINHEIGHT, MARGINWIDTH, NAME, SCROLLING, SRC and WIDTH
html <IFRAME ALIGN> => (ALIGN=left|center|top|bottom) This sets the alignment of the frame or of the surrounding text. The default is LEFT
html <IFRAME FRAMEBORDER> => (FRAMEBORDER=1|0) Renders a 3-D edge border around the frame. 1 (default) inserts a border. 0 displays no border
html <IFRAME HEIGHT> => (HEIGHT=height) Controls the height (in pixels) of the floating frame
html <IFRAME MARGINHEIGHT> => (MARGINHEIGHT=height) Controls the margin height for the frame, in pixels
html <IFRAME MARGINWIDTH> => (MARGINWIDTH=width) Controls the margin width for the frame, in pixels
html <IFRAME NAME> => (NAME=name) Provides a target name for the frame
html <IFRAME SCROLLING> => (SCROLLING=yes|no) Creates a scrolling frame
html <IFRAME SRC> => (SRC=address) Displays the source file for the frame
html <IFRAME WIDTH> => (WIDTH=width) Controls the width of the floating frame, in pixels
html <IMG> => <Inline Image> The inline image tag displays an image referred to by a URL. It must contain at least an SRC attribute
html <IMG attributes> => ALIGN, ALT, BORDER, CONTROLS, DYNSRC, HEIGHT, HSPACE, ISMAP, LOOP, LOWSRC, START, SRC, UNITS, USEMAP, WIDTH, and VSPACE
html <IMG ALIGN> => (ALIGN="alignment") Here "alignment" should be one of TOP, MIDDLE, or BOTTOM. This causes the top, middle, or bottom of the image to be aligned with the text on the line containing the IMG tag."alignment" should be one of LEFT, RI...
html <IMG ALT> => (ALT="text") Here "text" is the text to be displayed by a browser that does not display images, such as Lynx, or to be used when image display is suppressed.
html <IMG BORDER> => (BORDER=number) Here number is the border thickness in pixels. (Do not use BORDER=0 for images that are links.)
html <IMG CONTROLS> => If present, and an AVI resource is being played, displays controls under the resource.
html <IMG DYNSRC> => (DYNSRC="url") Specifies an AVI resource to be played, or a VRML world. Always include a still image as well with the SRC attribute, for use by browsers that do not display inline video or VRML.
html <IMG HEIGHT> => (HEIGHT=number) This specifies the height of the image, according to the UNITS attribute.
html <IMG HSPACE> => (HSPACE=number) Here number is the space, in pixels, to leave to the left and right of the image.
html <IMG ISMAP> => (ISMAP="url") This attribute indicates that this image is a server side image map.
html <IMG LOOP> => (LOOP=number) The optional LOOP attribute will cause the resource to be played number times. LOOP="INFINITE" will cause the resource to be played continuously as long as the page is open.
html <IMG LOWSRC> => (LOWSRC="url") Specifies an image to be displayed while the SRC image is being loaded. This alternate image should take much less time to download then the SRC image: it should be lower resolution, black and white, etc.
html <IMG START> => (START="start option") The START attribute specifies when the browser should start to play the resource specified with the DYNSRC attribute. START=FILEOPEN instructs the browser to play the resource only when the file is opened. S...
html <IMG SRC> => (SRC="URL") Here "URL" identifies the image source, typically a GIF or JPEG file.
html <IMG UNITS> => (UNITS=units) Here units is one of pixels, meaning the width and height are measured in pixels, or en, meaning the width and height are measured in en spaces.
html <IMG USEMAP> => (USEMAP="url") This attribute overrides the ISMAP attribute, if present, and if the browser supports client-side image maps. It uses the MAP element found at url to translate clicks.
html <IMG WIDTH> => (WIDTH=number) This specifies the width of the image, according to the UNITS attribute.
html <IMG VSPACE> => (VSPACE=number) Here number is the space, in pixels, to leave above and below the image.
html <INPUT> => To be filled in at a later date <Form Input>
html <INS> => (Inserted Text) The inserted text tag marks text that has been inserted, for example in a group authoring situation or a legal document.
example <INS> => <INS> text </INS>
html <ISINDEX> => (Is Index) The isindex tag, which is only valid in a HEAD section, declares that the current HTML document is a searchable index. The user will be prompted for keywords to search for. A new URL will be formed by taking the base addr...
example <ISINDEX> => <ISINDEX HREF=URL> & <ISINDEX PROMPT=prompt>
html <KBD> => <Keyboard> The keyboard tag defines text that should be shown in a fixed width font. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag. Many browsers use the same font for th...
example <KBD> => <KBD> text </KBD>
html <LANG> => <Language> The language tag is used to alter the language used for a block of text.
example <lang> => <LANG> text </LANG>
html <LH> => <List Heading> The list heading tag defines the heading for an ordered, unordered, or definition list. Other tags may be embedded in a list heading. It must come before any List Item (LI) or Definition Term (DT) tags in the list.
example <lh> => <LH> text </LH>
html <LI> => <List Item> The list item tag defines one entry in an ordered, unordered, menu, or directory list. Other tags may be embedded in a list item.
html <LI attributes => SRC, DINGBAT, SKIP, TYPE, and VALUE
html <LI SRC> => The SRC attribute uses the image specified by the URL as the bullet for this item. <LI SRC=URL> text </LI>
html <LI DINGBAT> => The DINGBAT attribute identifies an iconic entity for the bullet. <LI DINGBAT="entity-name"> text </LI>
html <LI SKIP> => The SKIP attribute is used with ordered lists to skip forward in the count. <LI SKIP=number> text </LI>
html <LI TYPE> => The TYPE attribute changes the bullet or numbering style for this item. type has the same values as it would in the OL or UL tag. <LI TYPE=type> text </LI>
html <LI VALUE> => The VALUE attribute resets the sequence number to number. <LI VALUE=number> text </LI>
html <LINK> => The link tag appears within the HEAD section of a document. It has all the same attributes as the anchor tag. The main 3 attributes used are REL, REV and HREF.
html <LINK attributes> => REL, REV, TITLE and HREF
html <LINK REV> => The REV attribute specifies a reverse relationship <LINK REV=relationship HREF="URL"> & <LINK REV=relationship HREF="URL" TITLE="title">
html <LINK TITLE> => The TITLE attribute specifies an advisory title string. <LINK REV=relationship HREF="URL" TITLE="title">
html <LINK HREF> => the HREF attribute specifies the URL of the link.
html <LINK REL> => REL attribute specifies the relationship between this document and the link. - See also: html <LINK REV=relationship> - <LINK REL=relationship HREF="URL">
html <LINK REV=relationship> => Toolbar relationships: REL=Home, REL=ToC, REL=Index, REL=Glossary, REL=Copyright, REL=Up, REL=Next, REL=Previous, REL=Help and REL=Bookmark (Other relationships: REL=Banner & REL=StyleSheet)
html <LINK REL=Home> => Link points to home or top page in hierarchy.
html <LINK REV=ToC> => Link points to a table of contents.
html <LINK REV=Index> => Link points to an index for the current page.
html <LINK REV=Glossary> => Link points to a glossary.
html <LINK REV=Copyright> => Link points to a page with copyright information for the current page.
html <LINK REV=Up> => Link points to the pages parent in the hierarchy.
html <LINK REV=Next> => Link points to the next page in a series of pages.
html <LINK REV=Previous> => Link points to the previous page in a series of pages.
html <LINK REV=Help> => Link points to information that may further explain the page to the user.
html <LINK REV=Bookmark> => Link points to a particular location within a long document. The TITLE attribute is used to label the bookmark.
html <LINK REV=Banner> => This use achieves the effect that the BANNER tag will eventually provide.
html <LINK REV=StyleSheet> => Link points to a style sheet that will be used to render the current document.
html <LISTING> => <Listing> The listing tag introduces a program listing. Because of the way this tag handles embedded tags, it should no longer be used. PRE is a better choice.
example <LISTING> => <LISTING> text </LISTING>
html <MAP> => <Map> The map tag defines a client side image map It gives a name to a collection of AREA tags that are superimposed over an inline image to connect user clicks with URLs.
example <MAP> => <MAP NAME="name"> area tags </MAP>
html <MARQUEE> => <Marquee> The marquee tag defines a moving piece of text, like a movie marquee.
example <MARQUEE> => <MARQUEE> text </MARQUEE> and See: html <MARQUEE attributes>
html <MARQUEE attributes> => ALIGN, BEHAVIOR, BGCOLOR, DIRECTION, HEIGHT, HSPACE, LOOP, SCROLLAMOUNT, SCROLLDELAY, WIDTH, VSPACE, and WIDTH
html <MARQUEE ALIGN> => The ALIGN attribute works like the ALIGN attribute in the IMG tag, setting the location of the surrounding text. "align" can be TOP, BOTTOM, or MIDDLE.
example <MARQUEE ALIGN> => <MARQUEE ALIGN="align"> text </MARQUEE>
html <MARQUEE BEHAVIOR> => The BEHAVIOR attribute defines the way the text moves. SCROLL means that the text slides into the marquee box and out again, then repeats. SLIDE means that the text slides into the marquee box, stops when it is all in, then...
example <MARQUEE BEHAVIOR> => <MARQUEE BEHAVIOR="behavior"> text </MARQUEE>
html <MARQUEE BGCOLOR> => The BGCOLOR attribute specifies the colour to be used for the background. rrggbb is a six digit hexadecimal number with the first two digits specifying the red value, the middle two the green value, and the last two the blue...
example <MARQUEE BGCOLOR> => <MARQUEE BGCOLOR="#rrggbb"> text </MARQUEE> & <MARQUEE BGCOLOR="colorname"> text </MARQUEE>
html <MARQUEE DIRECTION> => The DIRECTION attribute is LEFT or RIGHT and specifies the direction in which the text should move.
example <MARQUEE DIRECTION> => <MARQUEE DIRECTION="direction"> text </MARQUEE>
html <MARQUEE HEIGHT> => The HEIGHT and WIDTH attributes size the marquee box. If n is an absolute number, it is taken to mean pixels; if n is followed by a % sign it is taken to mean a percentage of the width or height (as appropriate) of the screen...
example <MARQUEE HEIGHT> => <MARQUEE HEIGHT=n> text </MARQUEE> & <MARQUEE HEIGHT=n%> text </MARQUEE>
html <MARQUEE HSPACE> => The HSPACE and VSPACE attributes specify a margin to the left and right, or above and below, the marquee box, in pixels.
example <MARQUEE HSPACE> => <MARQUEE HSPACE=n> text </MARQUEE>
html <MARQUEE LOOP> => The LOOP attribute will cause the marquee to scroll n times. LOOP="INFINITE" will cause the marquee to scroll as long as the page is open.
example <MARQUEE LOOP> => <MARQUEE LOOP=n> text </MARQUEE>
html <MARQUEE SCROLLAMOUNT> => The SCROLLAMOUNT attribute specifies, the amount, in pixels, to move the scrolling text by each time it is drawn.
example <MARQUEE SCROLLAMOUNT> => <MARQUEE SCROLLAMOUNT=n> text </MARQUEE>
html <MARQUEE SCROLLDELAY> => The SCROLLDELAY attribute specifies the delay, in milliseconds, between drawings.
( run in 1.272 second using v1.01-cache-2.11-cpan-5a3173703d6 )