href new code example
Example 1: how to make a link in html that opens in a new tab
add attribute : target = "_blank"
Example 2: open link in new tab
<a href="The link of the page" target="_blank">Open page in new tab</a>
add attribute : target = "_blank"
<a href="The link of the page" target="_blank">Open page in new tab</a>