Appearance: | <BODY>...</BODY> |
---|---|
Attributes: | BACKGROUND=URL, BGCOLOR=#RRGGBB, TEXT=#RRGGBB, LINK=#RRGGBB, VLINK=#RRGGBB, ALINK=#RRGGBB |
Between the opening and closing BODY tags, you find all of the text, graphics, etc. that get displayed in the Browser window. The BODY tag comes after the HEAD tag in HTML programming.
bgcolor | Specifies the background color for the document body. See here for the syntax of color values. |
text | Specifies the color used to stroke the document's text. This is generally used when you have changed the background color with the BGCOLOR or BACKGROUND attributes. |
link | Specifies the color used to stroke the text for unvisited hypertext links. |
vlink | Specifies the color used to stroke the text for visited hypertext links. | alink | Specifies the highlight color used to stroke the text for hypertext links at the moment the user clicks on the link. |
background | Specifies a URL for an image that will be used to tile the document background. |
Appearance: |
<H1>...</H1> <H2>...</H2> <H3>...</H3> <H4>...</H4> <H5>...</H5> <H6>...</H6> |
---|---|
Attributes: | ALIGN=left|right|center |
The Heading tags are most commonly used to set apart document or section titles. There are six levels of Headings, numbered 1 through 6, with 1 being the most prominent. Only one Heading per row is allowed.
Appearance: | <P>...</P> |
---|---|
Attributes: | ALIGN=left|center|right |
The Paragraph tags simply begin and end a paragraph in HTML. Word wrapping is controlled by the Browser. Multiple spaces are collapsed into a single space.
EXAMPLE:
|
|
T07D021