<dd> Tag in HTML 5

In this article I am going to explain about dd tag in HTML 5.
  • 1851

Definition

<dd> Tag in HTML 5 is used to
describe an item in a definition list in your web page or in web site. <dd> Tag in HTML 5 is always used inside <dt> and <dl> tag. Inside <dd> tag you can put text or pic.

Browser Support by <dd> tag

The <dd> tag is supported in internet explorer, mozilla firefox, Google chrome, opera and safari browsers.

Lets take an example of <dd> tag

<html>

<body>

    <dl>

        <dt>Coffee</dt>

        <dd>

            Hot Coffee</dd>

        <dd>

            Cold Coffee</dd>

    </dl>

</body>

</html> 

 

Output


Clipboard24.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.