HTML <dl> Tag
The <dl> tag defines a description list.The <dl> tag is used in conjunction with
Example
<!DOCTYPE html> <html> <body> <dl> <dt>engineering</dt> <dd>study</dd> <dt>engine</dt> <dd>mechine</dd> </dl> </body> </html>