Skip to main content

Posts

Showing posts with the label Description Lists

Description Lists

Description Lists: Description lists similar to lists but providing additional description to every item. Here is descriptionlists.html: <!DOCTYPE html> <html lang="en" dir="ltr">   <head>     <title>Description Lists in Html</title>   </head>   <body>     <h3>Here is the Description List</h3>     <dl>       <dt>1</dt>       <dd>One</dd>       <dt>2</dt>       <dd>Two</dd>       <dt>3</dt>       <dd>Three</dd>     </dl>   </body> </html> Web view in Html: Here is the Video: