Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML dl tag</title> </head> <body> <h1>Definition List</h1> <dl> <dt>term1</dt> <dd>– definition1</dd> <dt>term2</dt> <dd>– definition2</dd> </dl> </body> </html>