How to open a link in a new window or new tab.
In order to open a link in a new window / tab, add target="_blank" inside the <a> tag:
<a href="../html-link.htm" target="_blank">Open page in new window</a>
The code will create this link:
You can't set whether the link will be opened in a new window or new tab. It depends on the browser's settings.
In order to open a link in a new window, add Javascript command onclick="window.open('text-link.htm', 'name','width=600,height=400') inside the <a> tag:
<a href="../html-link.htm" target="popup" onclick="window.open('../html-link.htm','name','width=600,height=400')">Open page in new window</a>
The code will create this link: