<class home>  <html part II>   <back

html continued

Changing link Color:

In the <body> tag you can set the color of all links (default is blue).
You use the link attribute.
You can set these attributes:
link="red" (sets link color)
vlink="green" (sets color when a link was visited)
alink="yellow" (sets color when you click a link)


example>>>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Pony Pony Pony</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body link="red" vlink="yellow" alink="#D6EF39">
<a href="http://www.pony.com">pony1</a>
<br />
<a href="http://www.twoponies.com">pony2</a>
<br />
<a href="http://www.ponies.com">pony3</a>

</body>
</html>