Tuesday, 6 December 2016

HTML Lists

  1. HTML offers three ways for specifying lists of information. All lists must contain one or more list elements.
  2. <ul> - An unordered list. This will list items using plain bullets.
    The Unordered list starts with <ul> tag and list items start with the <li> tag.
    You can use type attribute for <ul> tag to specify the type of bullet you like. By default it is a disc. But you can change to square or circle
  3. <ol> - An ordered list. This will use different schemes of numbers to list your items.
    The numbering starts at one and is incremented by one for each successive ordered list tagged with <li>.
    You can use type attribute for <ol> tag to specify the type of numbering you like. By default it is a number.
    But you can change to Roman Numbers(I),Small roman numbers(i), alphabets(A), small aplhabets (a).
    You can use start attribute for <ol> tag to specify the starting point of numbering you need.
  4. <dl> - A definition list. This arranges your items in the same way as they are arranged in a dictionary.
    <dl> - Defines the start of the list.
    <dt> - Defines a term.
    <dd> - Defines term definition

No comments:

Post a Comment