Home > Article > Web Front-end > How to use html dl tag
html The dl tag is used to define a definition list and is used to combine
#html How to use dl tag?
Function: Defines the definition list.
Description: Used to combine
Note: All browsers support the
html dl tag usage example
<html> <body> <h2>一个定义列表:</h2> <dl> <dt>计算机</dt> <dd>用来计算的仪器 ... ...</dd> <dt>显示器</dt> <dd>以视觉方式显示信息的装置 ... ...</dd> </dl> </body> </html>
Effect output:
The above is the detailed content of How to use html dl tag. For more information, please follow other related articles on the PHP Chinese website!