what is definition list in a web page?Write a code of a definition list to support your answer
Answers
Answered by
7
Answer:
I think it's helpful for you
Explanation:
Use the <dl> tag to add definition lists. The HTML <dl> tag is used for declaring a definition list. This tag is used within <dd> tag. A definition list is similar to other lists but in a definition list, each list item contains two entries − a term and a description.
Answered by
7
Explanation:
A definition list is a list of terms and corresponding definitions.
<!DOCTYPE html>
<html>
<head>
<title>HTML dl Tag</title>
</head>
<body>
<dl>
<dt>Definition List</dt>
<dd>A list of terms and their definitions/descriptions.</dd>
<dt>Android</dt>
<dd>Android tutorial.</dd>
<dt>Ruby</dt>
<dd>Ruby tutorial.</dd>
</dl>
</body>
</html>
Similar questions