The <dt> tag short term of (definition term). The main purpose of the <dt> is that it defines term in a description list.
Example of Code
<h1>Definition List</h1>
<dl>
<dt>term1</dt>
<dd>– definition1</dd>
<dt>term2</dt>
<dd>– definition2</dd>
</dl>
Output
Definition List
- term1
- – definition1
- term2
- – definition2
