+ 2
What does <dt>, <dd>, and <dl> tag stand for, and state it's uses in html
Html
2 Answers
+ 1
"A description list is a list of terms, with a description of each term.
The <dl> tag defines the description list, the <dt> tag defines the term (name), and the <dd> tag describes each term:
Example
<dl>
  <dt>Coffee</dt>
  <dd>- black hot drink</dd>
  <dt>Milk</dt>
  <dd>- white cold drink</dd>
</dl>
"
Source: https://www.w3schools.com/html/html_lists.asp
+ 2
Oooh,,,, very thanks friend Guru đ€đđđ