HTML Link question. PLEASE HELP!

liunx

Guest
Alrighty. I know I used to do it, but I can't remember the tag anymore. On a page with more than multiple links, I want ONLY 1 to not be blue or underlined. Like a secret link on the page. How do I do that?! Please help!!! Thanks in advance.<!--content-->Man ... right after I posted I found in in some source code on my friends page <a href=http://www.webdeveloper.com/forum/archive/index.php/"" style="color:#000;text-decoration:none"> Thank to any that were thinking of helping. =)<!--content--><a href=http://www.webdeveloper.com/forum/archive/index.php/"yourlink.htm" style="color: black; text-decoration:none;">yourlink</a><!--content-->lol...yep, that was it... :D<!--content-->first....in CSS:<br />
<br />
in <HEAD> section type<br />
<br />
<style type="text/css"><br />
a.classnameofyourchoice<br />
{<br />
color: #rgb value of your desired color;<br />
text-decoration: choose: none|underline|overline| or any combination;<br />
}<br />
</style><br />
<br />
or, in HTML:<br />
<br />
in the <BODY> section type<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"url of your link" style="color:#rgb color of your choice; text-decoration: choose from the ones above;">your url text</a><br />
<br />
some advice:<br />
it most cases, the CSS version is more successful and is esier to edit after first use mainly becuz the CSS form is more open and organized<br />
<br />
i hope that helps<br />
<br />
XaTaKu_NaKuSuTe<br />
<br />
XaTaKu.Tk (<!-- m --><a class="postlink" href="http://www.xataku.tk">http://www.xataku.tk</a><!-- m -->)<!--content-->
 
Back
Top