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