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]