Is there a way that I can create a link using text, but not have
it underlined?
Believe it or not, yes you can. I would strongly recommend that you
consider exactly how you should use it. A reader may not realize you
have created a link unless you are pretty obvious about it. This works
with MSIE and Netscape Communicator.
<A HREF="./h36.shtml" STYLE="TEXT-DECORATION: NONE">
I AM REALLY A LINK!</A>
You can also turn off link underlining on an entire page
by placing the following code near the top of your page,
just over the <BODY> and <HEAD> tags.
<STYLE TYPE="text/css">
<!--
A {text-decoration: none}
-->
</STYLE>