According to this article at W3 Schools, one can create a basic table in HTML like this:
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
From above, it appears that one enters data by rows.
I have a situation where I need to enter all of the data by columns. Is something like this possible?
<table border="1">
<tc>
<td>row 1, cell 1</td>
<td>row 2, cell 1</td>
</tc>
<tc>
<td>row 1, cell 2</td>
<td>row 2, cell 2</td>
</tc>
</table>
<td>tags? furthermore could it read id's or classes? e.g.<td id="column_one">id'sorclassesW3C Schoolsto justW3 Schools. Quite an important difference seeing W3Schools is not even W3C compliant most of the time. W3Schools == W3Fools! If you want to learn about tables or read HTML online documentation got straight to the source www.w3.org or MDN - LEARN HTML MDN is a great source for Html, JavaScript and more.