Last Updated on April 26, 2023 by Roshan Parihar
HTML dd tag is used to specify data description for data term in description list.
Syntax
1 |
<dd>put data description content here...</dd> |
1 2 3 4 5 6 7 |
<p>List of Antiseptic Creams:</p> <dl> <dt>Patanjali</dt> <dd>Patanjali Boro soft</dd> <dt>Emami</dt> <dd>Emami Boroplus</dd> </dl> |
Output
List of Antiseptic Creams:
- Patanjali
- Patanjali Boro soft
- Emami
- Emami Boroplus
You should also read:
- HTML dl tag and
- HTML dt tag
Resources and References of HTML dd tag
1. W3C Specification.
2. HTML living standard
3. W3C project using Github