Home >Web Front-end >HTML Tutorial >In HTML, how do we define the start of a list of terms?
HTML
You can try running the following code, using the
<!DOCTYPE html> <html> <head> <title>HTML dt Tag</title> </head> <body> <dl> <dt>Definition List</dt> <dd>A list of terms and their definitions/descriptions.</dd> <dt>JAVA</dt> <dd>Tutorial on JAVA Programming Language.</dd> <dt>Android</dt> <dd>Tutorial on Android Operating System.</dd> </dl> </body> </html>
The above is the detailed content of In HTML, how do we define the start of a list of terms?. For more information, please follow other related articles on the PHP Chinese website!