HTML dd Tag

HTML dd Tag


Define : 
This tag is used to describe a term/name in a description list.
It is used in conjunction with <dl> and <dt>
This tag inside <dd> you can put paragraphs, line breaks, images, links, lists, etc.

For example :
Output :
                                        

Browser Support
All browsers are supported like opera, firefox, chrome, Microsoft edge.

Global and Event Attributes
This tag also supports the Global and Event Attributes in HTML.

Default CSS Settings
Most browsers will display the <dd> element in css

dd {
  display: block;
  margin-left: 40px;
}