You have visitors at your website or blog and you want them to click a link but you don’t want them to navigate away from your site.
Here is what you need to know:
Below is a regular HTML URL
<a href=”http://www.yoururl.com”></a>
To open in a new window you need to look at the example below and notice the target="_blank"
after the end of your URL
<a href=”http://www.yoururl.com” target=”_blank”></a>