Entities Template

Link States

When links are blue the state is :link, which is the default state. When a link was visited and is purple, it's state is :visited

The third state is :hover, which is the styling applied when a user hovers over link

There is also :focus, this state applies when you focus on a link. Like hovering over it and pressing TAB

Finally theres :active, link turns a color when it is clicked

a:visited { color: brown; }