Multiple choice technology web technology

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

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

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

  3. <a href="url" new>

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

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

The target="_blank" attribute is the correct way to open links in a new browser window or tab. The _blank value is a reserved keyword that tells the browser to open the link in a new window. Options A, B, and C use incorrect or non-standard values.