How to create link that changes color when hovering mouse over it


This is quite simple all we need to do is to use the pseudo classes to achieve this effect.
Here is how you can achieve this effect

<html>
<a href=”somepage.html”>My Page LInk</a>
</html>

CSS  to change color of link when hovering over it:

<style>
a:hover{color:#FC0;}
</style>

Comments

Check out

CSS Sprites | What are They?

Login form | Using CSS3

HTML5 Semantic Tags | What do they mean

Remove Scrollbars from syntaxhighlighter

Adding a button in HTML | styling a button

How CSS3 Works

HTML5 | LocalStorage

Advanced Jquery easing | Demo and Download

How to add Jquery easing effects | Jquery tutorial