To embed a Style Sheet in your HTML code:
<link rel = "stylesheet" title "Davids Styles" type = "text/css" href = link-style.css"> <!– heading color set by style rule –> <h1>Paragraph Heading</h1> <!– paragraph text color set by style rules –> <h1>This paragraph is presented by <span>CCS</span> style rules.</p>
The CCS contentes:
h1 {color:blue} p {color:green} span {color:red}Results for the above woul be:
Paragraph Heading
This paragraph is presented by CCS style rules.