Home >> HTML 5 >> dl Tag in HTML 5

dl Tag in HTML 5

The <dl> tag in HTML stands for definition lists.

For example:-

<!DOCTYPE html>
<html>
<head>
   <title>DL Tag</title>
</head>
<body>
   <h3>The dl element</h3>
   <dl>
       <dt>New Delhi</dt>
       <dd>New Delhi is the capital of India</dd>
       <dt>Lucknow</dt>
       <dd>New Delhi is the capital of Uttar Pradesh</dd>
   </dl>
</body>
</html>

Output
The dl element
New Delhi
   New Delhi is the capital of India
Lucknow
   New Delhi is the capital of Uttar Pradesh

Post Your Comment

Next Questions
dt Tag
em Tag
embed Tag
fieldset Tag
figcaption Tag
figure Tag
font Tag
footer Tag
form Tag
frame Tag
frameset Tag
Heading Tag
head Tag
header Tag
hr Tag
html Tag
i Tag
iframe Tag
img Tag
input Tag
ins Tag
kbd Tag
label Tag
legend Tag
li Tag

Copyright ©2022 coderraj.com. All Rights Reserved.