14.
What does the href attribute in the <a> (link) tag specify?
The font size of the link.
The color of the link.
The text to be displayed for the link.
The destination URL of the link.
Correct: D
The href attribute in the <a> tag specifies the destination URL or web page that the link points to. Example:
<a href="https://www.example.com">Click here</a>