Computer Science, asked by frefre, 4 months ago

state true or false the <dl> tag shows elements with out any bullet symbols or any numbers in the front of items​

Answers

Answered by ramxeroxvelachery
1

Answer:

10.1 Introduction to lists

HTML offers authors several mechanisms for specifying lists of information. All lists must contain one or more list elements. Lists may contain:

Unordered information.

Ordered information.

Definitions.

The previous list, for example, is an unordered list, created with the UL element:

<UL>

<LI>Unordered information.  

<LI>Ordered information.  

<LI>Definitions.  

</UL>

An ordered list, created using the OL element, should contain information where order should be emphasized, as in a recipe:

Mix dry ingredients thoroughly.

Pour in wet ingredients.

Mix for 10 minutes.

Bake for one hour at 300 degrees.

Definition lists, created using the DL element, generally consist of a series of term/definition pairs (although definition lists may have other applications). Thus, when advertising a product, one might use a definition list:

Lower cost

The new version of this product costs significantly less than the previous one!

Easier to use

We've changed the product so that it's much easier to use!

Safe for kids

You can leave your kids alone in a room with this product and they won't get hurt (not a guarantee).

defined in HTML as:

<DL>

<DT><STRONG>Lower cost</STRONG>

<DD>The new version of this product costs significantly less than the

previous one!

<DT><STRONG>Easier to use</STRONG>

<DD>We've changed the product so that it's much easier to use!

<DT><STRONG>Safe for kids</STRONG>

<DD>You can leave your kids alone in a room with this product and

they won't get hurt (not a guarantee).

</DL>

Lists may also be nested and different list types may be used together, as in the following example, which is a definition list that contains an unordered list (the ingredients) and an ordered list (the procedure):

The ingredients:

 >

<!ELEMENT OL - - (LI)+                 -- ordered list -->

<!ATTLIST OL

 %attrs;                              -- %coreattrs, %i18n, %events --

 >

Start tag: required, End tag: required

<!ELEMENT LI - O (%flow;)*             -- list item -->

<!ATTLIST LI

 %attrs;                              -- %coreattrs, %i18n, %events --

 >

Start tag: required, End tag: optional

Attribute definitions

type  =  style-information [CI]

Deprecated. This attribute sets the style of a list item. Currently available values are intended for visual user agents. Possible values are described below (along with case information).

start = number [CN]

Deprecated. For OL only. This attribute specifies the starting number of the first item in an ordered list. The default starting number is "1". Note that while the value of this attribute is an integer, the corresponding label may be non-numeric. Thus, when the list item style is uppercase latin letters (A, B, C, ...), start=3 means "C". When the style is lowercase roman numerals, start=3 means "iii", etc.

value = number [CN]

Deprecated. For LI only. This attribute sets the number of the current list item. Note that while the value of this attribute is an integer, the corresponding label may be non-numeric (see the start attribute).

compact [CI]

Deprecated. When set, this boolean attribute gives a hint to visual user agents to render the list in a more compact way. The interpretation of this attribute depends on the user agent.

Attributes defined elsewhere

id, class (document-wide identifiers)

lang (language information), dir (text direction)

title (element title)

style (inline style information)

onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup (intrinsic events)

Ordered and unordered lists are rendered in an identical manner except that visual user agents number ordered list items. User agents may present those numbers in a variety of ways. Unordered list items are not numbered.

Both types of lists are made up of sequences of list items defined by the LI element (whose end tag may be omitted).

This example illustrates the basic structure of a list.

<UL>

  <LI> ... first list item...

  <LI> ... second list item...

  ...

</UL>

Lists may also be nested:

DEPRECATED EXAMPLE:  

<UL>

    <LI> ... Level one, number one...

    <OL>  

       <LI> ... Level two, number one...

       <LI> ... Level two, number two...

       <OL start="10">  

          <LI> ... Level three, number one...

       </OL>  

       <LI> ... Level two, number three...

    </OL>  

    <LI> ... Level one, number two...

</UL>

Details about number order. In ordered lists, it is not possible to continue list numbering automatically from a previous list or to hide numbering of some list items. However, authors can reset the number of a list item by setting its value attribute. Numbering continues from the new value for subsequent list items. For example:

<ol>

<li value="30"> makes this list item number 30.

<li value="40"> makes this list item number 40.

<li> makes this list item number 41.

</ol>

Explanation:

Answered by laddi1758
0

Explanation:

trueksbkbisvbskvsskjbsjsb

Similar questions