Computer Science, asked by Anonymous, 6 months ago

What are the different tags use with the definition list?? ​

Answers

Answered by SujaSri
6

Answer:

The different tags used with the definition list are <dl>, <dt> and <dd> tags.

<dl> tag defines the description list.

<dt> tag defines data term.

<dd> tag is used to describe a term/name in a description list.

Inside a <dd> tag you can put paragraphs, line breaks, images, links, lists, etc.

Explanation:

Example:

<dl>

 <dt>Coffee</dt>

 <dd>Black hot drink</dd>

 <dt>Milk</dt>

 <dd>White cold drink</dd>

</dl>

Answered by janzaeonp
1

Answer:

What are the different tags used in definition list?

Definition and Usage

The <dl> tag defines a description list. The <dl> tag is used in conjunction with <dt> (defines terms/names) and <dd> (describes each term/name).

Explanation:

Similar questions