<dt>
HTML <dt> Tag
Instance
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <dl> <dt>Coffee</dt> <dd>Black hot drink</dd> <dt>Milk</dt> <dd>White cold drink</dd> </dl> </body> </html>
Run Example»
Click the "Run Instance" button to view the online instance
Browser support
All major browsers support< dt> tag.
Tag definition and usage instructions
<dt> Tag defines an item/name that describes a list.
The<dt> tag is used with <dl> (defines a list of descriptions) and <dd> (describes each item/name).
Differences between HTML 4.01 and HTML5
In HTML 4.01, the <dt> tag defines an entry that defines a list.
In HTML5, the <dt> tag defines an item/name that describes a list.
Global attributes
<dt> tag supports HTML global attributes.
Event attributes
<dt> tag supports HTML event attributes.
Related Articles
HTML Tutorial: HTML List.