open new html page code example
Example 1: how to make a link in html that opens in a new tab
add attribute : target = "_blank"
Example 2: a tag open in new tab
<a href="#" target="_blank" rel="noopener noreferrer">Link</a>
add attribute : target = "_blank"
<a href="#" target="_blank" rel="noopener noreferrer">Link</a>