Monday, January 30, 2012

Tip #76: More Organization -- HTML Tables

What if you need more than bullets and enumerations to explain a complex task? The answer may be tables. You know, rows and columns of information. Here's how you can add a table to your blog page, and, you've guessed it -- a future article will explain a complex task with lots of information. Instead of too much text, I will display the how-to in a table.

First, here's the sample table:

X O X
O X O
O O X





Next, here's the code, used to create the table:

<table border="5">
<tr>
<td>X</td> <td>O</td> <td>X</td>
</tr>
<tr>
<td>O</td> <td>X</td> <td>O</td>
</tr>
<tr>
<td>O</td> <td>O</td> <td>X</td>
</tr>
</table>




Tables can be useful for text as well as for images. Additional details on the use of html tables can be found at W3Schools.com.




[Back to the Main Site]