How to force a HTML link to open in a new TAB
Typically it is good to open a link which takes the user out of current website in a new window or a new TAB so that the user doesn’t leave the original site.
The link target can be specified as “_blank” to force the link to open in a new TAB. The following example shows how to do it.
<a href="http://www.popularmatrimony.com" target="_blank">PopularMatrimony</a>
The following example link shows how it works.
PopularMatrimony

