More information about the Definition list

Asked By 0 points N/A Posted on -
qa-featured

Hi experts,

Thanks a lot for your valuable information. I want to know more about the Definition list.

SHARE
Best Answer by Transmote Pilos
Best Answer
Best Answer
Answered By 5 points N/A #163222

More information about the Definition list

qa-featured

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.

Answered By 5 points N/A #163223

More information about the Definition list

qa-featured

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>

Answered By 0 points N/A #163224

More information about the Definition list

qa-featured

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.

 

<dt>Step 1</dt>
<dd> Sub Step 1</dd>
<dt>Step 2</dt>
<dd>Sub Step 2</dd>
<dt>Step 3</dt>
<dd>Sub Step 3</dd>
</dl>
 
Output:
 
Step 1
           Sub Step 1
Step 2
           Sub Step 2
Step 3
           Sub Step 3
 

 

Thank You………..

Answered By 0 points N/A #163225

More information about the Definition list

qa-featured

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!!!!!!

Related Questions