how to link to a new tab in html code example
Example 1: opem link in new tab html
<a href="your link" target="_blank">The home page will open in another tab.</a>
//Put target="_blank" as shown
Example 2: open link in a new tab hmtl
<a href="https://insert.url" target="_blank">The Website Linked</a>
Example 3: how to make links open in a new window
The short answer is: just add a target="_blank" attribute to your links (anchor tags).
<a href="https://www.thesitewizard.com/" target="_blank">thesitewizard.com</a>
Example 4: how to make a link open in new tab html
<a href="URL" target="_blank">Click here to go to my link</a>