Hyperlinking Ways?

sandesh_007

Regular Member
Joined
Dec 26, 2007
Messages
345
Reaction score
44
Hi,
I know following three ways to hyperlink a site
<a href="urlhere">anchor text</a>
anchor text
<url="urlhere">anchor text</url>

Can you guys share other ways to hyperlink. Because i remember there are two or three more ways but do not remember them exactly.
 
I would suggest also adding the 'title' tag to your HTML code.

Code:
<a href="http://yourlink.com" title="yourtitle">Your Keyword</a>
 
Back
Top