Embedding CSS
Embedding CSS in html documents
<!DOCTYPE html PUBLC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR//xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Applying CSS Mini-Site</title>
<style type="text/css">p {color: #F00;}</style>
</head>
<body>
<h1>Applying CSS Templates</h1>
<p>CSS for this page is embedded in the header in a <style> tag.
Generally a practice to avoid, for the sake of seperating content from presentation.</p>
</body>
</html>
