There is a new type of list called definition list.

░▒▓█ ᗯEᒪᑕOᗰE TO TᕼIs ᗷᒪOG █▓▒░

 

Definition list is a kind of list where it doesn't have bullets but it is used for showing the definition of a term

<dl> : It tells the browser that is a definition list

<dt> : It tells the browser that is a definition term

<dd> : It tells the browser that is a definition's definition

<html>
<head> <title> Definition List </title>
</head>
<body>
<b> Example of Definition List </b>
<hr>
<dl>
<dt> Beverages </dt>
<dd> Hot and cold drinks </dd>
<dt> Cappuccino </dt>
<dd> Hot Drinks </dd>
</dl>
</body>
</html>

Output:



Comments

Popular Posts