new tab onclick code example
Example 1: html open things in new tab
<a href="/" target="_blank">The home page will open in another tab.</a>
Example 2: 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>