3
Reply

What tag is used to create HTML Lists?

Ajay manola

Ajay manola

Aug 12, 2012
1.7k
0

      and
    sajidlkhan lodi
    February 10, 2015
    0

    The HTML li tag is used for specifying a list item. You can list out the items by using 4 types, ul - unordered list ol - ordered list dir - directory list (deprecated) menu - menu list (deprecated) Example:

    • ul - unordered list
    • ol - ordered list
    • dir - directory list (deprecated)
    • menu - menu list (deprecated)

    Magento Website Developer

    eswari
    October 31, 2012
    0

    An ordered list:The first list item The second list item The third list item An unordered list:List item List item List itemHTML Unordered ListsAn unordered list starts with the

      tag. Each list item starts with the
    • tag.The list items are marked with bullets (typically small black circles).
      • Coffee
      • Milk
      How the HTML code above looks in a browser:Coffee Milk HTML Ordered ListsAn ordered list starts with the
        tag. Each list item starts with the
      1. tag.The list items are marked with numbers.
        1. Coffee
        2. Milk
        How the HTML code above looks in a browser:Coffee Milk

    Satyaveer Chauhan
    August 27, 2012
    0