More information about the Definition list
Hi experts,
Thanks a lot for your valuable information. I want to know more about the Definition list.
Hi experts,
Thanks a lot for your valuable information. I want to know more about the Definition list.
Hi,
A definition list is very old code in html language.
 It is used for to define something in web page.
Definition list has three elements those are <dl>, <dt> and <dd>.
Example: <dl>Â Â Â Â Â <dt>Data </dt>Â Â Â Â <dd>
Unorganized and collect from various sources</dd> <dt>
Information (v)</dt>Â Â Â Â <dd>
It is a data which have been organized and processed to provide meaning to a user</dd>Â </dl>
There you can show your terms definition properly.
Thanks.
A definition list is a list of terms and definitions. Definition lists are typically formatted with the term on the left with the definition following on the right or on the next line.
The opening list tag must be <DL>. It is followed by an optional list header (<LH>caption</LH>) and then by term names (<DT>) and definitions (<DD>). For example:
<DL>
<LH>List Header</LH>
<DT>Term 1<dd>this is the definition of the first term.
<DT>Term 2<dd>this is the definition of the second term.
</DL>
The <dl> Â defines a definition list.Â
A definition list can have multiple terms for a given definition as well as multiple definitions for a given term.Â
The <dl> tag is used in tied with <dt> and <dd>.
<dt> :Â This element contains inline data.<dl>
<dd>:This data may be either inline, or it may be block level.
Â
Â
Thank You………..
A definition list is a list of terms and corresponding definitions. Definition lists are typically formatted with the term on the left with the definition following on the right or on the next line. The definition text is typically indented with respect to the term |
Â
THANK YOU!!!!!!