First page Back Continue Last page Graphics
Using Colors on Web Pages
One way you can setting colors for the entire page is to modify (by adding attributes to) the <BODY> tag:
<body bgcolor="red" text="yellow" link="green" alink="black" vlink="purple">
BGCOLOR = modifies background color
TEXT = modifies text color
LINK = modifies link color
VLINK = modifies visited link color (links that have been visited)
ALINK = modifies active link color (color that occurs the split second a user
clicks a link)
However, the preferred way to set colors for an entire page is to use Cascading Style Sheets (CSS). More on CSS in a few slides....