Simple Like That > Web Apps > CSS
![]() |
![]() |
| Inline styles use a STYLE attribute added to an instance of a HTML tag: < html_tag STYLE="attribute:value; attribute:value; ." > |
| Embedded styles are defined in style blocks (between
the <STYLE> and </STYLE> tags). The block contains a set of style rules that
specify selectors
and declarations of the style attributes: <STYLE> </STYLE> |
| A style sheet can be saved in a separate
file and linked to it from a document or set of
documents, using the <LINK> tag: < LINK REL="stylesheet" TYPE="text/css" HREF="mystyles.css" > |