Definition lists is used to define the term and with its description. It starts with the <DL> and endswith the </DL> tag The data term is defined inside the <DT> and </DT> tag. The data description is defined inside the tag <DD>and </DD>. It has no attributes. Tags of Definition List <DL></DL> <DT></DT> <DD></DD> Example <html> <head> <title> definition list </title> </head> <body> <dl> <dt>Word</dt> <dd> word is a word processor</dd> <dt>excel</dt> <dd> Excel is a spread sheet</dd> </dl> </body> </html> This will produce the following output Menu List It is used for creating menu list. It is created with the help of <menu></menu> and <li></li> . Example <html> <head> <title> me...