Linking to others website from your posts
Written by Basis-Consultant on 12:24 AMIf you found a good article or a reference and want to refer in your post you can link to it using < a href > tag like this
< a href="http://www.google.com" > Google </ a>
But above format of hyperlinking opens the webpages in the same window as current page. It will result in visitor to navigate away from your blog.
You can make the link open in a new window using target = "_blank" in the a href tag like this
< a href="http://www.google.com" target="_blank"> Google </ a>
Example
By this way you will not loose visitors due to redirection.
You can also use a href and a name tags to navigate or move int the same webpage
visit this post to know how to navigate or goto specific section within a page
0 comments: Responses to “ Linking to others website from your posts ”