- tag defines the
QusHTML
- टैग परिभाषित करता है
A. Unordered list
B. Ordered list
C. Description list
D. Descriptive list
Solution
C. Description listExplanation
The <dl> tag in HTML is used to define description lists. It typically consists of a series of term-description pairs.
Here's how it's structured:
<dl>: This is the container element that wraps the entire description list.
<dt>: Stands for "definition term". It's used to define the term being described.
<dd>: Stands for "definition description". It's used to define the description of the term defined by the preceding <dt> element.