Multiple choice technology web technology How can you open a link in a new browser window? <a href="url" target="new"> <a href="url" target="_blank"> <a href="url" new> <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.