<!DOCTYPE html>
<html>
<head>
<style>
/* visited link */
a:visited
{
color: orange;
}
/* mouse over link */
a:hover
{
color: hotpink;
}
/* selected link */
a:active
{
color: blue;
}
</style>
</head>
<body>
<p><b><a href="color.html">This is a link</a></b></p>
<p><b>Note:</b> a:hover MUST come after a:link and a:visited in the CSS definition. The order is effective here.</p>
<p><b>Note:</b> a:active MUST come after a:hover in the CSS definition. The order is effective here.</p>
</body>
</html>