PDA

View Full Version : What is DD tag ?



chinmay.sahoo
07-24-2017, 10:56 AM
Stands for Definition Data, The <dd> tag is used to describe a term/name in a description list.
The <dd> tag is used in conjunction with
<dl>
(defines a description list) and
<dt>
(defines
terms/names).Inside a <dd> tag you can put paragraphs, line breaks, images, links, lists, etc.
Eg



<!DOCTYPE html>
<html>
<body>
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
</body>
</html>

ruhikhan
07-02-2018, 07:21 AM
Get More Information about This Topic