Hyperlink Cues

From: www.askthecssguy.com

Hyperlink Cues

DescriptionGIFPNG
Link (red) 
Link (black) 
Link
Doc
Mailto
PDF
Popup
XLS

Note: PNG cues have a transparent background

Another way of adding a cue is...

Go here .

Go <a class="link" href="http://xyz.com">here</a> <img src="cue.png" />.

<style>
.link
{
  text-decoration: none; color: #000; white-space: nowrap;
}
.link:visited
{
  text-decoration: none; color: #000;
}
.link:hover
{
  text-decoration: none; color: #ff0000;
}
</style>