Style Sheets - Part 2

In early HTML, stylistic elements of a page were specified using tag attributes. For example, the background color of a page could be specified like this:
<BODY BGCOLOR="#FFFFFF">
...
</BODY>
Or the color of some text might be changed like this
<FONT COLOR="#FF0000">color</FONT>
Unfortunately, there are a few problems with this approach:

Next