Looking for an HTML code

liunx

Guest
Looking for a code to get rid of the underline in a link.<br />
<br />
Erik<!--content-->The way I do it is in a style sheet, ruffly:<br />
<br />
link {text-decoration: none;}<br />
<br />
I know you can use embedded styles on your page but I don't know how.<!--content-->If you're not using a stylesheet then it's done as:<br />
<a href=http://www.htmlforums.com/archive/index.php/"abc" style="text-decoration: none;">Go to ABC</a>Or if you don't want to have to add that every time you create a link then you can the following code in the < HEAD > of your document:<br />
<STYLE TYPE="text/css"><br />
<!--<br />
a {text-decoration: none;}<br />
--><br />
</STYLE>Hope this helps,<br />
<br />
Neil<!--content-->
 
Back
Top