Multiple choice technology web technology How can you open a link in a new browser window <a href="url" new> <a href="url" target="_blank"> <a href="url" target="new"> <a hreaf="url;_blank"> Reveal answer Fill a bubble to check yourself B Correct answer Explanation To open a link in a new browser window, use the target attribute with value "_blank" in the tag. The correct syntax is . Option A incorrectly uses just 'new'. Option C uses 'new' which is not standard. Option D has garbled syntax.