HTML Definition Lists
A definition list is not a list of item it consist of terms and description of terms,<dl> tag is used to create definitionlist.It stands for definition list,<dt> tag is used with each term in the definition list.It stands for definition term.And <dd>
tag is used with each description of the term and it stands for definition description.
Example
<html>
<head>
<title
Minds Mania
</title>
</head>
<body>
<dl>
<dt>HTML</dt>
<dd>It used to create webpages</dd>
<dt>Java</dt>
<dd>It used to create Application</dd>
<dt>C Sharp</dt>
<dd>It used to create Desktop Application</dd>
<dt>Php</dt>
<dd>It used to create server side coding for web development</dd>
</dl>
</body>
</html>
0 Comments