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:

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>

Output:-

The Description List

Coffee
- Black Coffee
- Espresso Coffee
Tea
- Green Tea
- Black Tea

HOME/BACK


Comments

Popular posts from this blog

Keywords in C Programming

Definition of C Language

Data Types in C Programming