:link Description:
The :link pseudo-class matches unvisited links.
:link Web Browser Support:
:link in CSS Versions:
:link Examples:
Set the color of all unvisited links on a page
<style>
:link { color: #f00; }
</style>
:link Special Notes:
- This is different from styling simply the a element, as the :link pseudo-class can refer to any element that might be linked.
- Most browsers only support this pseudo-class on the a element.

