HTML Description Lists & Terms
HTML Description Lists
- A description list is a list of terms, with a description of each term.
- The
<dl> tag defines the description list - The
<dt> tag defines the term (name) - The
<dd> tag describes each term:
<dl> tag defines the description list <dt> tag defines the term (name) <dd> tag describes each term:Input:-
<html>
<body>
<h3>The Description List</h3>
<dl>
<dt>Coffee</dt>
<dd>- Black Coffee</dd>
<dd>- Expresso Coffee</dd>
<dt>Tea</dt>
<dd>- Green Tea</dd>
<dd>- Black Tea</dd>
</dl>
</body>
</html>
Comments
Post a Comment