on click new tab html code example
Example 1: open link in new tab
<a href="https://www.google.com/" rel="noopener noreferrer" target="_blank">google.com</a>
dont use just target="_blank" without rel="noopener noreferrer"
It Makes Your Site Vulnerable to Phishing Attacks
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>