Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title> Link Hovering </title>
<style type="text/css">
a { /*defines styles for all anchor elements*/
color: #4489C9;
text-decoration:none;
font-weight:bold;
}
a:hover { /*defines styles for links once they're hovered over*/
color:#E78D1F;
}
</style>
</head>
<body>
<p>
This is a bunch of text here... Nothing to see. Just typing random stuff to give an example of a <a href="#">LINK</a> in the middle of other text...
</p>
</body>
</html>
Bookmarks