1<!DOCTYPE html>
2## Code by Scratchy (Twitter @S_cratchy)
3<html>
4<body>
5
6<a href="https://www.Google.com" target="_blank">Gooooooooogle!</a>
7
8</body>
9</html>
1 <button class="btn btn-success" onclick=" window.open('http://google.com','_blank')"> Google</button>
2
1The short answer is: just add a target="_blank" attribute to your links (anchor tags).
2
3<a href="https://www.thesitewizard.com/" target="_blank">thesitewizard.com</a>
1<!-- add target="_blank" to open new tab when link is clicked [in HTML]-->
2<a href="YourLink" target="_blank">YourText</a>