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
- Use tables? <table> <tr> <td>Name 1</td> <td>Name 2</td> </tr> <tr> <td>Name 3</td> <td>Name 4</td> </tr> </table>
- 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