6 ways to specify a CSS

<HEAD>
  <LINK REL=STYLESHEET TYPE="text/css" HREF="mystyles.css"> [linked]
  <STYLE TYPE="text/css">
    @import url(standardstyles.css); [imported]
    H1, H2 { font: Arial,sans-serif; }
  </STYLE> [embedded]
...
<DIV STYLE="color: red">This block is red.</DIV> [inline style]
 

(plus the default style sheet for the browser) and maybe in some browsers a user-specified style sheet. All but the inline styles are rules:

selectors { list of property:value pairs }


[up to series index] Next: Selectors