Target =......
will open the html pagr in new window
Answers
Answered by
0
In HTML, target="_blank" in the anchor tag (that is <a>) will open up the html page in a new tab when clicked.
Example of usage:
<a href="main.html" target="_blank">Visit Brainly</a>
Now when the user clicks on Visit Brainly the website will be opened up on a new tab.
Hope this helps if this is what you had intended to ask.
Similar questions