HTML Description List | with Example
HTML Description List
HTML Description List :-
Que. What is dl tag html?
Description list (dl) tag.
They are 3 tag used to define description list.
<dl> ,< dt> & <dd> tag use.
1) <dl> :- tag use to defines the description list.
2) <dt> :- tag used to defines data term /using the element /description terms name.
3) <dd>:- tag defines data definition /description each term.
HTML Description List Example :-
<html>
<head>
<title>description list html</title>
</head>
<body>
<h1>HTML description List </h1>
<dl>
<h3><dt> life</dt>
<dd>life is short to your time Avoiding failure.
</dd>
<dt> Enjoy</dt>
<dd>Enjoy your day to day life today because yesterday gone<br>
and tomorrow never promised.</dd>
<dt>Moments</dt>
<dd>Best moment of our life are not captur by camera
but are stored good memories in our mine
and they always makes us smile.</dd>
</h3>
</dl>
</body>
</html>
Post a Comment