Latest Lists

How do you do a list in html?

I need to know the html code to make a list af items....

Public Comments

  1. its stop being a nerd.
  2. start the list with <ul> put a <li> before each bulleted item you can put a </li> at the end of the bullet but its not necessary end your list with a </li> TADA! Good ol' HTML!
  3. ul tag with li tag for each item. do not forget to close each item with /li and close list with /ul
  4. This html code: <ul> <li>Italy</li> <li>Czech Republic</li> <li>Ghana</li> <li>USA</li> </ul> ...will produce this list: • Italy • Czech Republic • Ghana • USA
Powered by Yahoo! Answers