Thursday, December 17, 2009

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.How can you make a list that lists the items with numbers and items with bullets on the html as%26lt;ol%26gt; ?
Use tables?


%26lt;table%26gt;


%26lt;tr%26gt;


%26lt;td%26gt;Name 1%26lt;/td%26gt;


%26lt;td%26gt;Name 2%26lt;/td%26gt;


%26lt;/tr%26gt;


%26lt;tr%26gt;


%26lt;td%26gt;Name 3%26lt;/td%26gt;


%26lt;td%26gt;Name 4%26lt;/td%26gt;


%26lt;/tr%26gt;


%26lt;/table%26gt;How can you make a list that lists the items with numbers and items with bullets on the html as%26lt;ol%26gt; ?
Yes use tables and inside tables use lists to have numbered or bullet effects using ol(ordered list) or ul (unordered list).

No comments:

Post a Comment