How to create a hyperlink that opens in a new tab/ window in HTML ?
How to create a hyperlink that opens in a new tab/window in HTML? Steilla Mitchel 770 05 Jun 2024 How to create a hyperlink that opens in a new tab/window in HTML?
Hyperlink in HTML
There is HTML <a> tag is used to create the hyperlink on the web page.
Syntax-
To create a hyperlink that opens in a new tab or window in HTML, you can use the
targetattribute with the value "_blank".Example-
Explaition