How use dd Tag HTML ?
How use <dd> Tag HTML ? The <dd> tag is used in HTML to define a term in a description list. It is called the description detail elements. How to write <dd> tag in HTML <html> <body> <h2>Topics to Learn</h2> <dl> <dt>HTML</dt> <dd> Markup Language </dd> <dt>C</dt> <dd> It is a procrdure oriented programming language. </dd> <dt>C++</dt> <dd> Object oriented programming language </dd> <dt>C#</dt> <dd> Object-oriented programming language. </dd> </dl> </body> </html>