HTML <dd> Tag
In this tutorial, we will learn about dd tag in HTML with the help of examples.
<dd> Tag
Dd tag <dd> is used to describe a term/name in a description list.
Note : We can put linebreak, images, links, lists, etc. in <dd> tag.
Syntax
<dd>.....</dd>
Example
<!DOCTYPE html>
<html>
<head>
<title>Dd Tag</title>
</head>
<body>
<dl>
<dt>Java</dt>
<dd>Faster executable multiplatform computer language</dd>
<dt>C</dt>
<dd>Fastest and one of the oldest computer language</dd>
<dt>Python</dt>
<dd>One of the best language for Artificial Intelligence and machine learning.</dd>
</dl>
</body>
</html>
Output
- Java
- Faster executable multiplatform computer language
- C
- Fastest and one of the oldest computer language
- Python
- One of the best language for Artificial Intelligence and machine learning.
Global Attribute
Dd Tag support all the global attributes of HTML.
Event Attribute
Dd Tag support all the event attributes of HTML.
Next Tutorial
We hope that this tutorial helped you develop better understanding of the concept of dd tag in HTML.
Keep Learning : )
In the next tutorial, you'll learn about HTML del
Tag.