Explain Description Lists in HTML Last Updated : 15 May, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report An HTML description list is a list of terms, with a description of each term. The HTML description list is represented as <dl>. Lists in HTML are used for specifying particular information in list form. There are various types of Lists in Html such as Ordered Lists, Unordered Lists, and description Lists. Description Lists are used for: To give definitions to particular terms that we have defined in our lists.To have a dictionary type of format(term and definition of term) Format of description Lists: Description Lists are used with description list tag <dl> tag in HTML.In <dl> tag we have description terms it is represented as <dt> tag Here we do not use li tag as Other Lists. In <dt> write the terms of the data. We can have different terms with the help of <dl>tag.In this we use the data description tag <dd> we use this tag for defining the term that we have stated. for eg. If we declare the term as Pizza then we can have a description as Pizza is a food item. Syntax: <dl> Contents of the list </dl> Example 1: In this example, we will use <dl> tag. HTML <!DOCTYPE html> <html> <head> <title> Description lists in html </title> </head> <body> <h1>GeeksForGeeks Courses</h1> <h2> Live courses at GeeksForGeeks and their Description </h2> <dl> <dt> Full Stack Development with React & Node JS - Live: </dt> <dd> Learn how to develop Single Page Web Applications. </dd> <dt>System Design - Live:</dt> <dd> For individuals looking to crack SDE job interviews. </dd> <dt>JAVA Backend Development - Live:</dt> <dd>Learn backend development with Java</dd> <dt>DSA Live for Working Professionals:</dt> <dd> A LIVE classroom program designed for Working Professionals </dd> </dl> </body> </html> Output: Example 2: In this example, we will use <dl> with <dt>, <dd> tags. HTML <!DOCTYPE html> <html> <head> <title>Description lists in html</title> </head> <body> <h1>GeeksForGeeks problem difficulties</h1> <h2> This is Type and description of problem difficulty levels <br>at Practice platform of GeeksForGeeks. </h2> <dl> <dt>School:</dt> <dd>Basic/school level problems</dd> <dt>Basic:</dt> <dd>Simple logical problems</dd> <dt>Easy:</dt> <dd> Problems based on simple data structures and logic </dd> <dt>Medium:</dt> <dd>Medium level problems based on dsa</dd> <dt>Hard:</dt> <dd>High level logical thinking problems</dd> </dl> </body> </html> Output: Comment More infoAdvertise with us Next Article Unordered, Ordered, and Description Lists in HTML A atharvakarpe Follow Improve Article Tags : HTML HTML-Tags HTML-Questions Similar Reads HTML Description Lists An HTML Description List is not as commonly used as unordered or ordered lists but serves an important purpose for displaying name-value pairs. This type of list is marked up using three tags: <dl>, <dt>, and <dd>.<dl> (Description List): This tag defines the description list 3 min read Explain semantic elements in HTML5 In this article, we are going to learn about the semantic elements in HTML5. Semantic elements are the elements that describe their meaning to both the developer as well as to the browser. HTML5 provides us with many semantic elements as listed below:<article> tag: A article tag is used to spe 7 min read Unordered, Ordered, and Description Lists in HTML Lists are used to store data or information in web pages in ordered or unordered form. HTML supports several types of list elements that can be included in the <BODY>tag of the document. These elements may also be nested, i.e., the onset of elements can be embedded within another. There are th 5 min read Unordered List Inside Description List An unordered list inside a description list is a way to organize and present information in HTML where a description list(<dl>) contains unordered lists (<ul>) within its description definitions (<dd>). This allows for a term to be defined and followed by additional, detailed point 3 min read How to add description list of an element using HTML ? To define the description of an element, the <dl> tag is used. This tag is used with <dt> and <dd> tag. In HTML4.1, it defines the definition list and in HTML5, it defines the description list. Syntax: <dl> Contents... </dl> Example 1: html <!DOCTYPE html> <htm 2 min read Describe the void elements in HTML Most of the HTML elements are surrounded by start and end tags to specify the starting and end of the element. There is a special group of elements that only have start tags and does not contain any content within it, these elements are called void elements. Void elements doesn't have ending tags an 3 min read Like