SETTING UP THE STYLES
You could make these color changes by simply adding the <font
color="blue"> tag to each of the headers. This works
if you only have a few changes to make, but what if you have a dozen, or several
dozen, of these headers on your page? Furthermore, what if you have several
dozen pages to do as well?
Enter the beauty of CSS.
This is how we begin:
<head><title>FAQ About Paragraphs</title>
<style type="text/css">
<!--
tag { property: value }
-->
</style>
</head> h4)color)blue or #0000FF)This is how our style declaration should look:
<head><title>FAQ About Paragraphs</title>
<style type="text/css">
<!--
h4 { color: blue }
-->
</style>
</head>