Computer Science, asked by dhrupad713, 11 months ago

Mona knows that, by default, links open in
the current window. But she wants the link
to open in another window. Write an HTML
code to help her so that she will get the
desired result.
[HSLC18]​

Answers

Answered by anishasa
4

Explanation:

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

<a href="https://www.google.com" target="_blank">click here</a>

Answered by AskewTronics
0

<a href="anylink.com" target="_blank"> goo </a>

Explanation:

  • The above-defined code gives the facilities to open the link in a new window. when the mona adds the above code in the place of the link code and writes the link in the place of "anylink.com", then the link will open in a new window.
  • It is because, when the user sets the target as "_blank" then the link will always open in the new window.

Learn More:

  • HTML link: https://brainly.in/question/3269733
Similar questions