css when press links not change color code example
Example 1: css url do not change color of visited links
a {
text-decoration: none;
}
a:link, a:visited {
color: blue;
}
a:hover {
color: red;
}
Example 2: link changes color after being clicked
a:link, a:visited {
color: red;
}