<dt> tag in HTML 5

In this articles i am going to explain about dt tag in HTML 5.
  • 1532

Definition

The <Dt> tag is used to specify the definition terms or items. The one definition list can have more than one definition term for description. The definition term is defined by using <dt> tag and definition description is defined by <dd> tag. The <dt> tag is defined within the <dl> tag.

Support browser in <Dt> tag.

Chrome,  Firefox,  Opera,  Internet Explorer 9  and  Safari.

Lets take an example of <Dt> tag

<html>
<body>
    <dl>
        <dt>Cokacola</dt>
        <dd>
            Black cold drink</dd>
        <dt>Milk</dt>
        <dd>
            White cold drink</dd>
    </dl>
</body>
</html>

 

Output

 Clipboard10.jpg

Further Readings

You may also want to read these related articles

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.