Or just put it between style tags (if you don't have a CSS file):
HTML Code:
<style type="text/css">
a:hover
{
background-color: #ff0000;
color: yellow;
}
</style>
<a href="url here">link text here</a>
If you already have a style section in your code (maybe between the head tags) you should put this style code in that section.