<dl> Tag in HTML

In this article i am going to explain about dl tag in HTML
  • 1308

Definition

<dl> tag defines the start and end of definition list. It used with <dt>  and <dd>. <dd> used with both<dl> and <dt>

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>
<head>
    <title></title>
</head>
<body>
    <dl>
        <dt>definition1</dt>
        <dd>
            -definition2</dd>
    </dl>
</body>
</html>

Output

dl.htm2.jpg

Further Readings

You may also want to read these related articles

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

 

© 2020 DotNetHeaven. All rights reserved.