(PCC)::[How-to-Changing-the-target-of-a-link-in-HTML]::[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>
If you set the target attribute to "_blank", the link will open in a new browser window or tab.