Amethyst

 view release on metacpan or  search on metacpan

factpacks/html.fact  view on Meta::CPAN

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



( run in 1.569 second using v1.01-cache-2.11-cpan-98e64b0badf )