| This document describes tags used to design and implement interactive 
          forms on a web page.
 This table:
 
            
              
                | Support: |  2.0, 
                3.0, 3.2 |  1.1+ |  1.0+ |  and these icons:  
            
                      alert you to tags and attributes that are not supported by all 
          browsers.
 
 
  <CAPTION> text </CAPTION> 
  
    <CAPTION ALIGN=alignment> 
  text </CAPTION> alignment
  <CAPTION ALIGN=> 
  text </CAPTION> vertical-alignment
  <CAPTION VALIGN=> 
  text </CAPTION> 
 The caption tag defines the caption of a figure or table. It is valid only 
within FIG 
or TABLE 
tags. 
 
    The ALIGN attribute arranges for the caption to be at the 
TOP or BOTTOM of the table or figure. 
 
  The ALIGN attribute sets the alignment of the caption within the 
table or figure border. It can be LEFT, RIGHT, or 
CENTER. 
 
  The VALIGN attribute arranges for the caption to be at 
the TOP or BOTTOM of the table or figure. 
  <MULTICOL attributes> 
 This tag is a container, used to split the display into columns without using frames or tables. The 
attributes of this tag are: 
  
    COLS="number"TheCOLSattribute is mandatory and controls 
    how many columns the display will be split into. 
    GUTTER="pixels"The GUTTERattribute controls the pixels of space between 
    columns. It defaults to a value of 10. 
    WIDTH="number"The WIDTH attribute controls the width of an individual 
    column. 
  <TABLE attributes> 
  table-content </TABLE> 
 A table consists of an optional caption (CAPTION) 
and one or more rows (TR.) 
The attributes are:  
  ALIGN="alignment"This causes the table to be aligned in one of a variety of ways on the 
  page. Here "alignment" should be one of 
  
  Note that this does not affect the alignment of the table 
  entries. WIDTH=numberThe UNITS attribute is used to translate number. 
BORDERThis attribute causes the table to be drawn with a border. 
BORDER=numberThis attribute draws the table with a border number pixels 
  thick. 
CELLPADDING=numberThis separates the cell borders and the text with a padding of 
  number pixels. 
CELLSPACING=numberThis separates cells with a gutter of number pixels. 
    BGCOLOR="#rrggbb"
 BGCOLOR="colorname"This attribute sets the background colour for the entire table. 
  
   BORDERCOLOR="#rrggbb"
 BORDERCOLOR="colorname"This attribute sets the border colour for the entire table. 
  
   BORDERCOLORLIGHT="#rrggbb"
 BORDERCOLORLIGHT="colorname"This attribute sets the border highlight colour for the entire table. 
  
   BORDERCOLORDARK="#rrggbb"
 BORDERCOLORDARK="colorname"This attribute sets the border shadow colour for the entire table. 
  
   VALIGN="valign"This attribute sets the vertical alignment for the entire table. 
  "valign"is TOPorBOTTOM.
    CLEAR=clearHere "clear" should be one of LEFT, 
  RIGHT, or ALL and specifies which margin should be 
  clear. 
    NOFLOWThis attribute prevents text flow around the table and is equivalent to 
  setting the CLEAR attribute on the element after the table. 
    COLSPEC=colspecHere colspec is a list of column alignments and widths, 
  separated by spaces. There should be one entry for each column in the table, 
  and each should be an optional capital letter for alignment (one of 
  L (left,) R (right,) C (centre,) 
  J (justify,) or D (decimal)) followed immediately by 
  a number describing the width. 
    UNITS=unitsThis makes sense only if the COLSPEC orWIDTHattributes are being used and specifies the units to be used for the column or 
  table widths. units should be one of
    DP="character"Here "character" is the character (the default is ".") to be 
  used in aligning for decimal 
  point alignment. 
    NOWRAPThis attribute prevents word wrap within table entries. 
 In the attributes above that refer to it, 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 value. Some sample colour 
values:  
  red 
  FF0000 
  green 
  00FF00 
  blue 
  0000FF 
  black 
  000000 
  white 
  FFFFFF 
  grey 
  888888 
  yellow FFFF00cyan 
  00FFFF  Microsoft Explorer supports the use of colour names in the 
BGCOLOR, BORDERCOLOR,BORDERCOLORLIGHT, 
andBORDERCOLORDARKattributes. Valid colours are: Aqua, Black, 
Blue, Fuchsia, Gray, Green, Lime, Maroon, Navy, Olive, Purple, Red, Silver, 
Teal,Yellow, and White. 
  <TBODY> table body 
  </TBODY>
 The TBODYtag is used to group together a number of rows within 
a table, for assigningIDorSTYLEvalues. 
  CLASS=typeThis attribute indicates the class that the element belongs too. 
  ID=valueThis attribute specifies a unique value for the element over the 
  docuement. 
  STYLE=css1 propertiesThis attribute specifies the style information.  
  <COL>content 
  </COL>
 <COL 
  ALIGN=alignment> 
  content </COL> number<COL 
  SPAN=
> content 
  </COL>
 The <COL> tag sets the properties of one table column at a 
time. Do not use this tag with a COLGROUP element.
 The ALIGNattribute specifies the text alignment in the cells 
within the colums. The values for "alignment" areLEFT, 
MIDDLEand RIGHT and the default isMIDDLE. 
  <COLGROUP>column data</COLGROUP>="align"> column 
  data<COLGROUP 
  ALIGN
</COLGROUP>"valign"<COLGROUP 
  VALIGN=
> column 
  data 
  </COLGROUP> "halign"> column 
  data<COLGROUP 
  HALIGN=
 
  </COLGROUP>"width"> column 
  data<COLGROUP 
  WIDTH=
 </COLGROUP> "number"> column 
  data<COLGROUP 
  SPAN=
</COLGROUP>
 The COLGROUPtag sets the properties of one or more table 
columns. The HALIGN attribute specifies the horizontal alignment of text 
in the cells for the column group.. The values areLEFT, RIGHTand CENTER (the default.) TheVALIGNattribute sets the vertical alignment for the column. The values areTOP,MIDDLE(the default,) andBOTTOM. 
TheSPANattribute sets the number of consecutive columns for the 
group. The WIDTHattribute specifies the width of each column in 
the column group. 
  <TD attributes>
 Valid only in a TR, 
the table data tag defines a table cell. The attributes are: 
  COLSPAN="number"the number of columns this cell occupies. 
  ROWSPAN="number"the number of rows this cell occupies. 
  NOWRAPThis attribute prevents word wrap within the cell. 
  ALIGN="align"governs the alignment of the text within the table cell. 
  "align" can be LEFT,RIGHT or CENTER.VALIGN="align"governs the alignment of the text within the table cell. 
  "align" can be TOP, MIDDLE, BOTTOM, or BASELINE.
    BGCOLOR="#rrggbb"
 BGCOLOR="colorname"This attribute sets the background colour for the table cell. 
  
   BORDERCOLOR="#rrggbb"
 BORDERCOLOR="colorname"This attribute sets the border colour for the table cell. 
  
   BORDERCOLORLIGHT="#rrggbb"
 BORDERCOLORLIGHT="colorname"This attribute sets the border highlight colour for the table cell. 
  
   BORDERCOLORDARK="#rrggbb"
 BORDERCOLORDARK="colorname"This attribute sets the border shadow colour for the table cell.  In the attributes above that refer to it, 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 value. Some sample colour 
values:  
  red 
  FF0000 
  green 
  00FF00 
  blue 
  0000FF 
  black 
  000000 
  white 
  FFFFFF 
  grey 
  888888 
  yellow FFFF00cyan 
  00FFFF  Microsoft Explorer supports the use of colour names in the 
BGCOLOR, BORDERCOLOR,BORDERCOLORLIGHT, 
andBORDERCOLORDARKattributes. Valid colours are: Aqua, Black, 
Blue, Fuchsia, Gray, Green, Lime, Maroon, Navy, Olive, Purple, Red, Silver, 
Teal,Yellow, and White. <TFOOT>
 Defines the table footer. The footer tag is used to group all footers. 
  CLASS=typeThis attribute indicates the class that the element belongs too. 
  ID=valueThis attribute specifies a unique value for the element over the document. 
  STYLE=css1 propertiesThis attribute specifies style the information  
  <THEAD>
 The THEADtag defines the table heading. TheTHEADtag is used to group all headers together. 
  
    ALIGN=left, center, right, justifySpecifies the alignment of text in the heading, the default is center. 
    CLASS=typeThis attribute indicates the class that the element belongs too. 
    ID=valueThis attribute specifies a unique value for the element over the 
    document. 
    STYLE=css1 propertiesThis attribute specifies style the information 
    VALIGN=middle/top/bottomThis attribute specifies the verticle alignment of text in the heading. 
    The default is middle.  
  <TH attributes>
 Valid only in a TR, 
the table header tag defines a header cell. The attributes are: 
  COLSPAN="number"the number of columns this header occupies. 
  ROWSPAN="number"the number of rows this header occupies. 
  NOWRAPThis attribute prevents word wrap within the cell. 
  ALIGN="align"governs the alignment of the text within the table cell. 
  "align" can be LEFT,RIGHT or CENTER. 
  Table Header cells default to centred.VALIGN="align"governs the alignment of the text within the table cell. 
  "align" can be TOP, MIDDLE, BOTTOM, or BASELINE.
    BGCOLOR="#rrggbb"
 BGCOLOR="colorname"This attribute sets the background colour for the header cell. 
  
   BORDERCOLOR="#rrggbb"
 BORDERCOLOR="colorname"This attribute sets the border colour for the header cell. 
  
   BORDERCOLORLIGHT="#rrggbb"
 BORDERCOLORLIGHT="colorname"This attribute sets the border highlight colour for the header cell. 
  
   BORDERCOLORDARK="#rrggbb"
 BORDERCOLORDARK="colorname"This attribute sets the border shadow colour for the header cell.  In the attributes above that refer to it, 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 value. Some sample colour 
values:  
  red 
  FF0000 
  green 
  00FF00 
  blue 
  0000FF 
  black 
  000000 
  white 
  FFFFFF 
  grey 
  888888 
  yellow 
  FFFF00 
  cyan 
  00FFFF  Microsoft Explorer supports the use of colour names in the 
BGCOLOR, BORDERCOLOR,BORDERCOLORLIGHT, 
andBORDERCOLORDARKattributes. Valid colours are: Aqua, Black, 
Blue, Fuchsia, Gray, Green, Lime, Maroon, Navy, Olive, Purple, Red, Silver, 
Teal,Yellow, and White. 
  <TR attributes>
 Valid only in a TABLE, 
the table row tag defines a row of cells that are defined withTHandTDtags. The attributes are: 
  ALIGN="align"governs the alignment of the text within the table cell. 
  "align" can be LEFT,RIGHT or CENTER.VALIGN="align"governs the alignment of the text within the table cell. 
  "align" can be TOP, MIDDLE, BOTTOM, or BASELINE.
    BGCOLOR="#rrggbb"
 BGCOLOR="colorname"This attribute sets the background colour for the table row. 
  
   BORDERCOLOR="#rrggbb"
 BORDERCOLOR="colorname"This attribute sets the border colour for the table row. 
  
   BORDERCOLORLIGHT="#rrggbb"
 BORDERCOLORLIGHT="colorname"This attribute sets the border highlight colour for the table row. 
  
   BORDERCOLORDARK="#rrggbb"
 BORDERCOLORDARK="colorname"This attribute sets the border shadow colour for the table row. 
  
    CLASS="class"class is one of Header, Body, or 
  Footer and allows the browser to arrange for header or footer 
  rows to be displayed as the user scrolls through the document.  Valid only in a TABLE, 
the table row tag defines a row of cells that are defined withTHandTDtags. The class attribute can be set to one of 
Header, Body, or Footer to arrange for 
header or footer rows to be displayed as the user scrolls through the document. 
 The ALIGNattribute governs the alignment of the cells 
within the table rows. "align" can beLEFTorRIGHT. IfALIGNis specified for any cell in the row, 
the cell alignment overrides the row alignment. 
 |