Multiple choice technology web technology

How can you open a link in a new browser window?

  1. <a href="url" target="_blank">

  2. <a href="url" target="new">

  3. <a href="url" new>

  4. None

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The target="_blank" attribute in an anchor tag opens the link in a new browser window or tab. This is the standard HTML way to specify that a link should open in a new browsing context. Option B (target="new") is not a valid HTML attribute value.