HTML <dd> tag

HTML <dd> tag : Definition

• The HTML <dd> tag is used for specifying a definition description in a definition list.

Paragraphs, line breaks, images, links, lists can be inserted inside a <dd> tag.

• The <dd> tag in HTML is used along with<dl> tag(description list) and <dt> tag(data term).</p>

<dd> tag example :

<!DOCTYPE html>  
<html>  
<body>  
<dl>  
  <dt>HTML</dt>  
  <dd>is a markup language</dd>  
  <dt>Java</dt>  
  <dd>is a programming language and platform independent</dd>  
 <dt>JavaScript</dt>  
 <dd>is a scripting language</dd>  
  <dt>SQL</dt>  
  <dd>is a query language</dd>   
</dl>  
</body>  
</html>

OUTPUT :


HTML
is a markup language
Java
is a programming language and platform independent
JavaScript
is a scripting language
SQL
is a query language