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="_blank">

  3. <a href="url" new>

  4. <a href=”link” start >

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

The target='_blank' attribute opens links in a new browser window or tab. 'new' is not a valid target value; only specific keywords like _blank work. The underscore prefix is required for special target values.