How to Make a HTML Link

how to make a link
How to Make a HTML Link - One of the basic tutorial blogger that must be mastered is how to make a link. You know that blogger uses HTML, so I will show you the HTML script to make a link.

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.
Consider the structure of the script above. For example if I write a code like this :

<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"
The result : Tutorial Blogger

Hope this tutorial can help you...

How to Make a HTML Link
Reviewed by ApiIslam on 6:15 PM
Rating: 5