HTML Definition List
Definition
-
Definition list is use for create glossary list. Definition list are stars with <dl> tag and close with </dl> tag.
-
<dl> tag have two tag <dt> and <dd> defined inside tag.
-
<dl> tag is a empty tag. Its use to define definition list. It does not have any attributes.
-
<dt> tag is a empty tag. Its use to define definition team. It does not have any attributes.
-
<dd> tag is a empty tag. Its use to define definition define. It does not have any attributes.
Example
<html>
<head>
</head>
<body>
<dl>
<dt>URL
<dd>Universal Resource Locator
<dt>W3C
<dd>World Wide Web Consortium
<dt>PNG
<dd>Portable Network Graphics
</dl>
</body>
</html>