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="window"> <a href="url" new> <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.