Hope this is the right place for this Question.
Can someone please tell me how to create a hyperlink using the <a></a> html tag without the hyperlink underlined.
Any help will be well appreciated.
Cheers
Printable View
Hope this is the right place for this Question.
Can someone please tell me how to create a hyperlink using the <a></a> html tag without the hyperlink underlined.
Any help will be well appreciated.
Cheers
Using inline CSS, you can do this
<a href="http://www.mendhak.com/" style="text-decoration: none;">Click Here</a>
Or in CSS to un-underline (??) all of your links:
a {text-decoration:none;}
-tg
Thanks everyone.