The domain latestlists.com is for sale. Click here for more details. Latest Lists - How can you make a list that lists the items with numbers and items with bullets on the html as<ol> ?

Latest Lists

How can you make a list that lists the items with numbers and items with bullets on the html as<ol> ?

I want to do this: First Row Second Row Name 1 Name 2 Name 3 Name 4 ect I want first row to be numbered 1 and row two to be numbered as 2 and the names to be bulletted. The two lists must be side by side.

Public Comments

  1. Use tables? <table> <tr> <td>Name 1</td> <td>Name 2</td> </tr> <tr> <td>Name 3</td> <td>Name 4</td> </tr> </table>
  2. Yes use tables and inside tables use lists to have numbered or bullet effects using ol(ordered list) or ul (unordered list).
Powered by Yahoo! Answers