A great feature to add to your web pages are fun and exciting text links.  You can make them change colors, remain regular until the mouse is over them and then get underlined, etc.  All you have to do is play around with the following "Style" tag:

<style>
<!--
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none}
A:hover {text-decoration: underline}
-->
</style>

The bolded areas are ones you will need to change in order to personalize this feature for your use.  Make sure you place this within the "Head" tags.  It must be placed here to work properly.  You can use colors and grammatical things such as the underline seen above.  You will have to customize it to make work for you.