Skip to main content

Description Lists

Description Lists: Description lists similar to lists but providing additional description to every item.

Here is descriptionlists.html:

  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <title>Description Lists in Html</title>
  5.   </head>
  6.   <body>
  7.     <h3>Here is the Description List</h3>
  8.     <dl>
  9.       <dt>1</dt>
  10.       <dd>One</dd>
  11.       <dt>2</dt>
  12.       <dd>Two</dd>
  13.       <dt>3</dt>
  14.       <dd>Three</dd>
  15.     </dl>
  16.   </body>
  17. </html>

Web view in Html:



Here is the Video: