The technical term for a link tag in HTML is an anchor and it is defined with the letter "a". The simplest form of anchor tag is a hypertext link ...
<a href="http://www.planetoftunes.com/">Click here for the best site on the web!</a>
A link such as the above will display the following default link states in a browser ...
The appearance of these default states can be re-defined in a CSS.
You can use a "flavor" of CSS advanced selector styles, known as Anchor Pseudoclasses, to re-define the way that text links appear throughout your site, or just within a single <div> tag (using contextual selectors). The following CSS link states can be styled ...
If you want a single link to be styled differently to the others, you can place the link in a unique <div id> and use a contextual selector...
#navigation a:hover {
font-weight: bold;
}
Once you have created your style sheet, click New CSS style in the CSS Styles palette ...
... and then choose Advanced as your Selector Type in the dialogue box that opens . You can then select each of the 4 link tags(link, hover etc) in turn from the Tag dialogue box and style them as usual.

Because the anchor pseudoclasses have a background image property, you can use CSS to switch image files for the 4 states. Here's how ...
You can also use an unordered list as the basis for an image swapping series of links.
You can find examples under the CSS Image Links heading here.
None at present