abbr.deciliter deciliter
html dl tag syntax
Function: defines the definition list.
Description: is used to combine <dt> (define the items in the list) and <dd> (describe the items in the list).
Note: All browsers support the <dl> tag.
html dl tag example
<html> <body> <h2>一个定义列表:</h2> <dl> <dt>计算机</dt> <dd>用来计算的仪器 ... ...</dd> <dt>显示器</dt> <dd>以视觉方式显示信息的装置 ... ...</dd> </dl> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance