Monday, September 3, 2007

HTML for Lists

1. Bulleted Lists:
    begins a bulleted, indented list. Each item in the list is then prefaced with the
  • tag. It is not necessary to insert a break at the end of each line -- the
  • tag automatically creates a new line.

    * with

  • * with

  • * with


  • 2. Numbered Lists:
      begins a numbered, indented list. Each item in the list is then prefaced with the
    1. tag. You need to close the list with the
    tag. Note: You can expand the
      to specify the TYPE of numbering:

        1 (decimal numbers: 1, 2, 3, 4, 5, ...)
          a (lowercase alphabetic: a, b, c, d, e, ...)
            A (uppercase alphabetic: A, B, C, D, E, ...)
              i (lowercase Roman numerals: i, ii, iii, iv, v, ...)
                I (uppercase Roman numerals: I, II, III, IV, V, ...)

No comments: