Advertisement

Google Ad Slot: content-top

Definition List

~1 min read · HTML
On this page

A definition list in HTML is used to create a list of terms and their corresponding definitions. 

Example
<dl>
<dt>Term 1</dt>
<dd>Description of Term 1.</dd>
<dt>Term 2</dt>
<dd>Description of Term 2.</dd>
</dl>
Try it yourself