Multiple choice 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> <a window="url" new> Reveal answer Fill a bubble to check yourself A Correct answer Explanation To open a link in a new browser window, use the target attribute with value "_blank": . The values "new" or a new attribute are not standard HTML. The target="_blank" is the correct way to achieve this behavior.