Page 1 of 1

Code for Words in Links?

Posted: Sun Mar 19, 2017 11:28 pm
by Xenops
So I would like to make links that are words, rather than the link address. I've tried both of these:

<a href="yahoo.com">Yahoo</a>
[url="yahoo.com"]Yahoo[/url]

and neither work for me. What is the secret, please? :D

Re: Code for Words in Links?

Posted: Sun Mar 19, 2017 11:46 pm
by tomgosse
Xenops wrote:So I would like to make links that are words, rather than the link address. I've tried both of these:

<a href="yahoo.com">Yahoo</a>
[url="yahoo.com"]Yahoo[/url]

and neither work for me. What is the secret, please? :D

In the second example remove the quotation marks and add http://

Code: Select all

 
 [url=http://yahoo.com]Yahoo[/url]
 

should give
Yahoo

Re: Code for Words in Links?

Posted: Mon Mar 20, 2017 12:10 am
by Xenops
HTLAL

Ah ha!

Thank you. :D