+ 1
How to open particular link in new tab in html ?
3 ответов
+ 11
By using target attribute with _blank value.
For example:
<a href="http://yoursite.com" target="_blank">My Site</a>
+ 8
target="_blank"
is used to open link in a new tab.
0
just add a target="_blank" attribute to link i.e, anchor tag