11.
Which HTML attribute should be used to make a link open in a new tab or window?
<a href="https://jshive.com/" ________>jshive.com</a>
target="_newtab"
target="_window"
target="new"
target="_blank"
Correct: D
To make a link open in a new tab or window, the target attribute should be used with the value "_blank". This attribute tells the browser to open the linked document in a new tab or window. So, the correct code would be target="_blank".