The <dd> tag is used in HTML to define a term in a description list. It is called the description detail elements.
Let us now see an example to implement the <dd> tag −
Example
<!DOCTYPE html> <html> <body> <h2>Topics to Learn</h2> <dl> <dt>JavaScript</dt> <dd>A scripting language.</dd> <dt>Java</dt> <dd>It is a programming language.</dd> <dt>jQuery</dt> <dd>A JavaScript library.</dd> <dt>C#</dt> <dd>Object-oriented programming language.</dd> </dl> </body> </html>