how to do when i press on link in html will open in a new tab code example
Example 1: how to make a link in html that opens in a new tab
add attribute : target = "_blank"
Example 2: link open in new tab html
<p>Check out <a href="https://www.freecodecamp.org/" target="_blank" rel="noopener noreferrer">freeCodeCamp</a>.</p>