Pseudo-class :link

The :link CSS pseudo-class represents an element
that has not yet been visited. It matches every
unvisited or element that has an href
attribute.

a:link {
  color: forestgreen;
  text-decoration-color: hotpink;
}