answersLogoWhite

0

    unordered list
: delineates a list, where the items are generally of equal importance and do not need to go in any particular order. Each item begins with a
  • tag. Unordered lists may be nested inside unordered lists or inside any other types of lists (one list inside of another list inside of another list). A line space automatically is inserted before and after an unordered list (that is, an entire line is skipped between an unordered list and any text before and after it), except for (on most browsers) a list nested within another list.

      ordered list
    : delineates a list, where the items are in sequential, numerical order. Each item begins with a
  • tag. Ordered lists may be nested inside ordered lists or inside any other types of lists (one list inside of another list inside of another list). A line space automatically is inserted before and after an ordered list (that is, an entire line is skipped between an ordered list and any text before and after it), except for (on most browsers) a list nested within another list.

  • User Avatar

    Wiki User

    15y ago

    What else can I help you with?

    Related Questions

    What is a list in HTML?

    A list in HTML defines a collection of items. List can be ordered (OL) or Unordered (UL).


    What does the code li mean?

    list item. it is the child of either <ul> - unordered list, or <ol> - ordered list in html


    Is used to separate single list items in HTML?

    Items in an ordered or unordered list will be surrounded by <li></li> tags.


    What is one effective method for studying and memorizing ordered or unordered lists"?

    One effective method for studying and memorizing ordered or unordered lists is to use mnemonic devices, which are memory aids that help you associate the items in the list with easier-to-remember cues or patterns.


    What is merge sort program?

    we can sort unordered list to order list. we fallow a mechanism given list divided into two parts take one-one part ordered them


    When is it appropriate to use an unordered list in HTML?

    Any time that you want to put a list of items on your page but don't need to have them numbered or lettered. Ordered lists put numbers or letters in front of the items, whereas unordered lists don't. For many lists there is no need for any numbers or letters, just the items themselves, so that is when you use an unordered list.


    How do you change the background of a bulleted list in HTML?

    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <style type="text/css" media="screen"> ul { background: #FFFFFF; } </style> </head> <body> </body> </html>


    How many HTML Lists?

    Lists in HTML are of 2 types i.e. UL and OL. UL defines the unordered list whereas OL defines ordered list.


    Are sets and sequences different types in computer science?

    Yes. In general, a set is an unordered collection of unique elements while a sequence is an ordered list of elements.


    What is the function of LIST tag in HTML language?

    There is no LIST tag in HTML. There are two tags that can help us create lists. <OL> to create ordered lists <UL> to create unordered lists


    HTML supports which types of lists?

    There are 3 different types of list in X/HTML. Ordered lists, unordered lists, and definition lists. Order lists are made using the OL tag and LI (list items), and display, by default, in a format that is numbered sequentially, starting at 1. The number system, by default is Arabic. Unordered lists are made using the UL tag and list items. They display with bullets preceding each list item. Definition lists are made using the DL tag (definition list) and contain DT (definition term) and DD tags (Definition definition). By default, the definitions are indented from the terms, without other formatting.


    What is the tag that starts a no numbered list?

    The <UL> tag, which is an unordered list.