|
Post by ~Joedagimp on Nov 22, 2008 15:46:30 GMT -5
VERY old. Here you will learn how to make a basic table using HTML. to start a table you use the <table> tag. But, if you want a border to be shown start with the <table border=" 1"> . change the Red part to different numbers, to change the border's thickness and size. now to make a table, you will need a table row. You can put in a table row using the <tr> tag. After that, you need a table collumn. Use the <td> to start a collum. Now, to have a basic table like this: SOME TEXT! | MORE TEXT! | MORE!! | AND MORE!!! |
you use the following code: <table border="1"> <tr> <td>SOME TEXT!</td> <td>MORE TEXT!</td> </tr> <tr> <td>MORE!!</td> <td>AND MORE!!!</td> </td></table> .
|
|