Opening a link in a new window is very easy. A link in HTML looks like this:
<a href="someurl.com">Link Text</a>
To open the link in a new window add target="_blank":
<a href="someurl.com" target="_blank">Link Text</a>
If you are using a text editor to create you links, you will often times see the option to open the link in a new window.
<a href="someurl.com">Link Text</a>
To open the link in a new window add target="_blank":
<a href="someurl.com" target="_blank">Link Text</a>
If you are using a text editor to create you links, you will often times see the option to open the link in a new window.

