DT Tag in HTML || HTML DT Tag
×

DT (<dt>) Tag

2784

The HTML DT <dt> tag is used to define a term in the description list present in an HTML document. The <dl>, <dt> and <dd> tags are used to define description list.

<dl> tag
It defines the description list in an HTML document
<dt> tag
It defines data term in an HTML document
<dd> tag
It defines description in an HTML document

Code:

<!DOCTYPE html>
<html>
<head>
<title> Example of HTML dt tag </title>
</head>
<body>
<dl>
<dt>HTML</dt>
<dd>is a markup language.</dd>
<dt>Python </dt>
<dd>is a programming language.</dd>
<dt>JavaScript</dt>
<dd>is a scripting language.</dd>
<dt>SQL</dt>
<dd>is a Structured Query Language.</dd>
</dl>
</body>
</html>

Output:



Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments