open page with html
<!DOCTYPE html>
## Code by Scratchy (Twitter @S_cratchy)
<html>
<body>
<a href="https://www.Google.com" target="_blank">Gooooooooogle!</a>
</body>
</html>
button open link in new tab
<button class="btn btn-success" onclick=" window.open('http://google.com','_blank')"> Google</button>
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>
Source: www.thesitewizard.com
open new tab when clicking link html
<!-- add target="_blank" to open new tab when link is clicked [in HTML]-->
<a href="YourLink" target="_blank">YourText</a>
open link in new tab
<!-- add target="_blank" to open new tab when link is clicked [in HTML]-->
<a href="YourLink" target="_blank">YourText</a>
open link in new tab
<a href="The link of the page" target="_blank">Open page in new tab</a>
Source: www.rapidtables.com