Programming Code Center(PCC)
[HTML]

(PCC)::[How-to-Changing-the-target-of-a-link-in-HTML]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

<h2>The target Attribute</h2>

<a href="https://www.bookofnetwork.com/html/hello-world-in-html-language" target="_blank">Visit our HTML tutorial!</a> 

<p>If you set the target attribute to "_blank", the link will open in a new browser window or tab.</p>

</body>
</html>

Output :

The target Attribute

Visit our HTML tutorial!

If you set the target attribute to "_blank", the link will open in a new browser window or tab.