使用
您可以嘗試執行以下程式碼以在 HTML5 中定義定義清單 -
<!DOCTYPE html> <html> <head> <title>HTML dl Tag</title> </head> <body> <dl> <dt>Definition List</dt> <dd>A list of terms and their definitions/descriptions.</dd> <dt>Android</dt> <dd>Android tutorial.</dd> <dt>Ruby</dt> <dd>Ruby tutorial.</dd> </dl> </body> </html>
以上是如何在HTML中定義定義清單?的詳細內容。更多資訊請關注PHP中文網其他相關文章!