Sometimes, as a blog writer, it seems counter-productive for you to provide links to other websites and blogs that have similar or better content then your own; however, contrary to ones intuition, providing useful links from your site can build up an audience as well as a new post could.
In other words, sharing your resources with your audience will only benefit your blog or site. A thought crossed my mind after adding more links and resources to my blog. The thought was that when many people read content on the web clicking links to get more indepth information is inevitable, but most viewers do not intend to leave your page. So, I wanted the links on my site that appear in articles and posts to open in a new tab by default.
The goal was achievable because I know as a viewer of a website you can right click any link and select "Open in new tab". By using an attribute for the HTML anchor tag, <a>. Here's the original HTML code for a link to google
(The first link would open and make you leave this page, but the 2nd link would open the page in a new tab.)
<a href="http://www.google.com/"> Go To Google </a>
Go To Google
Go To Google
<a href="http://www.google.com/" target="_blank"> Go To Google (new tab)</a>
Go To Google (new tab)
Go To Google (new tab)