STYLE
<STYLE DISABLED TITLE=string TYPE=BUTTON >
Specifies the style sheet for the page.
-
DISABLED
-
Used to disable an element.
-
TITLE=
-
Specifies the title of the style sheet.
-
TYPE=
-
Returns the CSS language that the style sheet is defined in.
This element may be used within either the HEAD or BODY tag.
Both the start and end tags are required.
Example
<STYLE>
BODY {background: white; color: black}
h3 {font: 8pt Arial bold}
P {font: 10pt Arial; text-indent: 0.5in}
A {text-decoration: none; color: blue}
</STYLE>
|