Lesson 4: Linking Tags
(About Link Colors)

This example demonstrates how link color attributes work. To display a visited link, point to a file we have already viewed. To represent an unvisited link, point to the file none.htm (which currently doesn't exist). We will cover the syntax of link tags in detail later in this section.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Using Link Colors</title>
</head>

<body bgcolor="#bdbdbd" text="black" link="blue" vlink="purple">
<br />
<b>
<center>
<a href="lesson04-01-vr-a.htm">Visited Link</a><br />
<a href="none.htm">Unvisited Link</a>
</center>
</b>
</body>
</html>