How do I create an html link to another page & open a new window?

Tutorial

To create a link to another page on your site like this:


<a href="//www.membergate.com">Text for the link here</a>


You would use this code:

Text for the link here


To have the Link Opened in a New Window


<a href="//www.membergate.com" target="_blank" rel="noopener">Text for the link here</a>

To create a link to external page from your site we recommend using the following code to open the link in a new window.

Text for the link here

NOTE

The target = _blank in the html - target="_blank" rel="noopener"