how to open link in a new tab in html code example
Example 1: open page with html
<!DOCTYPE html>
## Code by Scratchy (Twitter @S_cratchy)
<html>
<body>
<a href="https://www.Google.com" target="_blank">Gooooooooogle!</a>
</body>
</html>
Example 2: open anchor tag in new tab
<a href="https://youtu.be/dQw4w9WgXcQ" target="_blank">Use _blank</a>
Example 3: open link in new tab html
<a href="#" rel="noopener noreferrer" href="link"></a>