HTML
Tag


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

 Live Demo

<!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>

Output

Updated on: 30-Jul-2019

102 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements