HTML Definition Lists:
- We can define dictionary using HTML definition lists.
- We simply called it as description lists also
- The <dl> tag defines a description list.
- The <dl> tag is used in conjunction with <dt> (defines terms/names) and <dd> (describes each term/name).
- Definition List makes use of following three tags.
- <dl> – Defines the start of the list
- <dt> – A term
- <dd> – Term definition
- </dl> – Defines the end of the list
<!DOCTYPE html>
<html>
<body>
<dl>
<dt><b>HTML</b></dt>
<dd>This stands for Hyper Text Markup Language</dd>
<dt><b>HTTP</b></dt>
<dd>This stands for Hyper Text Transfer Protocol</dd>
</dl>
</body>
</html>