•	Definition lists in HTML are used to present terms and their corresponding definitions in a structured manner. 
                    •	To create a definition list, you use the <dl> tag as the container for the list. 
                    •	Within the <dl> tag, each term is represented by a <dt> tag (definition term), and its corresponding definition is represented by a <dd> tag (definition description). 
                    •	The <dt> tag is used to define the term or name, while the <dd> tag is used to provide the description or definition of the term. 
                    •	Definition lists are useful when you want to present glossaries, dictionaries, or any list of terms with their explanations.
                
            
<!DOCTYPE html>
<html>
   <head>
      <title>HTML Defination List</title>
   </head>
   <body>
      <h2>Defination List</h2>
       <dl>
         <dt><b>JTC</b></dt>
         <dd>NO. 1 Technical Training</dd>
         <dt><b>HTML</b></dt>
         <dd>This stands for Hyper Text Markup Language</dd>
      </dl>
   </body>
</html>
        
            