Specifies the style sheet for the page.
<STYLE
DISABLED
MEDIA=SCREEN | PRINT | ALL
TITLE=text
TYPE="text/css"
>
Parameter |
Description |
DISABLED |
Used to disable an element. This attribute prevents an element from receiving the focus, and causes the element to appear "grayed out." |
MEDIA |
Describes the output device for the document. A value of "PRINT" does
not affect the on-screen layout. Default value is ALL. |
TITLE |
Used to provide advisory information. |
TYPE |
Indicates the type of style sheet. |
<STYLE>
BODY {background: yellow; color: white}
H1 {font: 6pt Arial bold}
P {font: 15pt Arial; text-indent: 0.5in}
A {text-decoration: none; color: blue}
</STYLE>
This element may be used within the BODY tag. Both the start and end tags are required.