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>一個(gè)定義列表:</h2>

<dl>
   <dt>計(jì)算機(jī)</dt>
   <dd>用來計(jì)算的儀器 ... ...</dd>
   <dt>顯示器</dt>
   <dd>以視覺方式顯示信息的裝置 ... ...</dd>
</dl>

</body>
</html>

Run instance ?

Click the "Run instance" button to view the online instance