Read this tip to make your life smarter, better, faster and wiser. LifeTips is the place to go when you need to know about Navigation and other Html topics.
If you're looking to have the underlines removed from your links, this is a simple way to do it. If you want to remove it from only one link, see my tip in the tricks and shortcuts category. This tip will use style sheet tags to remove that pesky underline. If you're not real familiar with style sheets, don't be intimidated.
Simply place this code between the <HEAD> and </HEAD> tags:
<style>
<!--
a {text-decoration: none}
-->
</style>