HTML Other Lists In Hindi | Mayank Salvi
HTML, description lists का भी supports करता है।
HTML Other Lists
HTML, description lists का भी supports करता
है।
HTML Description Lists
description list, terms की एक list है, जिसमें प्रत्येक
term का description होता है।
<dl>
tag description list को
define करता है, <dt> tag term
(name) को define करता है, और <dd>
tag
प्रत्येक term का वर्णन करता है:
Example
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
Chapter Summary
description list को define करने के लिए HTML <dl> element का उपयोग
करें
description term को define करने के लिए HTML <dt> element का प्रयोग
करें
description list में term का वर्णन करने के लिए HTML <dd> element का उपयोग
करें
Also Read:
Complete HTML Series In Hindi: Click Here