Use the
You can try running the following code to define a definition list in 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>
The above is the detailed content of How to define a definition list in HTML?. For more information, please follow other related articles on the PHP Chinese website!