19.
What attribute can you add to the following element to turn it into a link to "https://jshive.com/"?
<span>Visit JSHive</span>
<span href="https://jshive.com/">Visit JSHive</span>
<a src="https://jshive.com/"><span>Visit JSHive</span></a>
<a link="https://jshive.com/"><span>Visit JSHive</span></a>
<a href="https://jshive.com/"><span>Visit JSHive</span></a>
Correct: D
To turn an element into a link, we use the <a> tag with the href attribute. The correct answer is A1, <a href="https://jshive.com/"><span>Visit JSHive</span></a>. The href attribute specifies the URL that the link should go to.