| P (Paragraph) |
|
| This tag is used to indicate the beginning and end of a paragraph. The text between the opening and closing statements will not be indented. For example: |
|
| <P>
-- Place desired text here for this paragraph --
</P>
<P>
-- place desired text here for this paragraph --
</P> |
|
| P Attributes: |
|
| ALIGN="LEFT, RIGHT, or CENTER" |
| This attribute will cause the text of the entire paragraph to be aligned flush with the right (ALIGN="RIGHT") or left (ALIGN="LEFT") sides of the document or existing item. ALIGN="CENTER" will CENTER the text with respect to the borders of the document or an existing item. |
|
| CLASS=" ... " |
| This attribute indicates the style 'class' applicable to the tag to which it has been assigned, the style 'class' being a function of a style sheet. For example, assume the style class 'relaxed' includes text with a font size of 8, and the style class 'active' includes text with a font size of 12. Using the CLASS="relaxed" attribute with a tag will cause the text within that tag to be displayed with a font size of 8. Using the CLASS="active" attribute with a tag will cause the text within that tag to be displayed with a font size of 12. |
|
| ID="n" |
| The ID attribute is used to assign a unique ID selector (identification) to the tag in which it is invoked. A style may be assigned to that ID, which will effect only that one instance of the attribute. |
|
| STYLE=" ... " |
| Used to specify which style sheet commands to apply to the instance of the STYLE attribute invoked within the tag. |
|
| TITLE=" ... " |
| The TITLE attribute is used to display a note or information in a popup window pertaining to the object to which it was assigned. The popup window is invoked by holding the mouse pointer over the object. |
|
| WIDTH="n" |
| This attribute is used to define the width of the paragraph, and is measured in pixels. |
|
This tag also accepts the following Event Handlers:
onClick
onDblClick
onDragStart
onHelp
onMouseDown
onMouseUp
onMouseOver
onMouseMove
onMouseOut
onKeyPress
onKeyDown
onKeyUp
onSelectStart |