Q. Definition of Lists?
Another type of list is a definition list. Definition lists have a heading and text appears below that.
<HTML>
<HEAD>
<TITLE>TUTORSGLOBE.COM</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<DL>
<DT>10th Amendment </DT>
<DD>the powers not delegated to United States by the Constitution, nor prohibited by it to the States, are reserved to the States respectively, or to the people.
</DD>
</DL>
</BODY>
</HTML>
A definition list is introduced by <DL> tag and terminated by </DL>. Definition heading must be specified between <DT> and </DT> tags. Definition must be specified between <DD> and </DD> tags.