Open In App
Related Articles

HTML dt Tag

Improve Article
Improve
Save Article
Save
Like Article
Like

The <dt> tag in HTML is used to specify the description list. It is used inside the <dl> element. It is usually followed by a <dd> tag. The subsequent <dd> elements provides some related text associated with the term specified using <dt>.
 

Syntax: 

<dt> Content... </dt>

Example: 
 

HTML




<!DOCTYPE html>
 
<html>
 
    <body>
 
        <h1>GeeksforGeeks</h1>
        <h2><dt> Tag</h2>
        <dl>
            <!-- HTML dt tag -->
            <dt>Geeks Classes</dt>
            <dd>It is an extensive classroom programme for
            enhancing DS and Algo concepts.</dd><br>
 
            <!-- HTML dt tag -->
            <dt>Fork Python</dt>
            <dd>It is a course designed for beginners in
            python.</dd><br>
           
            <!-- HTML dt tag -->
            <dt>Interview Preparation</dt>
            <dd>It is a course designed for preparation of
            interviews in top product based companies.</dd>
        </dl>
         
    </body>
 
</html>                   


Output: 
 

Supported Browsers:  
 

  • Google Chrome
  • Internet Explorer
  • Edge 12 and above
  • Firefox 1 and above
  • Opera
  • Safari

 

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 21 Jul, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials