1 | A simple style sheet (in file "myStyle.css"): P.special { color: red; border: solid black; } |
2 | Now put a <LINK> tag in the <HEAD>: <LINK href="myStyle.css" rel="stylesheet" type="text/css"> |
3 | In the <BODY>, type: <P class="special">A special paragraph! |