Basic HTML Script to Make a Link
<a href="http://blogger-doctor.blogspot.com">Anchor Text</a>
Description:
- http://blogger-doctor.blogspot.com is the URL, link address that points to web or sites.
- Anchor Text is the text that is displayed to represent the link.
<a href="http://blogger-doctor.blogspot.com">Tutorial Blogger</a>
The link will appear like this : Tutorial Blogger
How to Make Link Open In New Tab?
Now, you will learn how to make link that open in new tab. It would be very useful if you create a link to another site. It keep your visitor to stay in your blog, and the visitor can also visit the link at the same time.
You have to do is add an attribute to the HTML link script.
<a href="http://blogger-doctor.blogspot.com" target="_blank">Anchor Text</a>
You have to add target="_blank" as the tag attribute into the link script, so the link can open in new tab. Below are attributes you can use to make the link open in new tab, it all have same function :
- target="_blank"
- target="blank"
- target="new"
Hope this tutorial can help you...