how to show visited links in different colors in css and then change back to default code example
Example: css url do not change color of visited links
a {
text-decoration: none;
}
a:link, a:visited {
color: blue;
}
a:hover {
color: red;
}