Another type of list is a definition list. Definition lists contain a heading & the text show below that.
<HTML>
<HEAD>
<TITLE>IGNOU</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<DL>
<DT>10th Amendment </DT>
<DD>the powers not hand over to the United States through the Constitution, nor forbidden through it to the States, are reserved to the States respectively, or to the people.
</DD>
</DL>
</BODY>
</HTML>
A definition list is introduced through the <DL> tag and terminated through </DL>. The Definition heading must be mentioned between the <DT> & </DT> tags. The Definition must be specified among <DD> and </DD> tags.