Amethyst

 view release on metacpan or  search on metacpan

factpacks/html.fact  view on Meta::CPAN

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. 



( run in 2.797 seconds using v1.01-cache-2.11-cpan-5837b0d9d2c )