7.
How can you add a description to each term of the list below using the correct HTML tags?
<dl>
_____Fruits_____
<dd>- apples</dd>
_____Vegetables_____
<dd>- salads</dd>
</dl>
Use the <dt> tags
Use the <span> tags
Use the <em> tags
Use the <dt> tags
Correct: D
The <dt> tags are used to add descriptions to terms defined with the <dd> tags in an HTML list. Therefore, to add a description to each term in the list, you need to use the <dt> tags.