Quantcast
Channel: Coffeewithcode.com
Viewing all articles
Browse latest Browse all 40

How To Open New Tab For HTML Hyperlink ?

$
0
0

HTML Hyperlink

In HTML, hyperlink can be used by using <a> tag. Hyperlink is a group of word which can be clicked and get executed by opening clicked link.

Syntax of HTML hyperlink is as below: 

  1. <a href="http://www.coffeewithcode.com/">Visit coffeewithcode</a>

Here ‘Visit coffeewithcode’ text can be clicked together and for this clickable text destination is http://www.coffeewithcode.com which is described in href attribute of <a> tag. So on click of Visit coffeewithcode it will open http://www coffeewithcode.com in same tab / browser.

In case if once required to open hyperlink in new tab / browser window then also it is possible.

For this one need to add new attribute target and value for this attribute is “_blank”.

So new syntax will be as below:

  1. <a href="http://www.coffeewithcode.com/" target="_blank">Visit coffeewithcode</a>

Now on click on ‘Visit coffeewithcode’ will open http://www coffeewithcode.com in new tab / windows.

 

 

 

 


Viewing all articles
Browse latest Browse all 40

Trending Articles