The Basic Homepage ~Inserting Tables~
The Basic Homepage ~Inserting Tables~

REMOVE *'s when programing!

<*table> make table ie. <*html>
<*border> (puts in bording)
<*table border> gives table with border
<*th> table header (makes bold)
<*tr> table row (ie. next line)
<*td> table data (puts info in)


BASIC TABLE

<*table border>
<*th> a Column <*/th>
<*th> another Column <*/th>
<*th> yet another Column <*/th>
<*tr>
<*td> a Column <*/td>
<*td> another Column <*/td>
<*td> yet another Column <*/td>
<*/table>

a Column another Column yet another Column
a Column another Column yet another Column


SPANNING COLUMNS

<*table border>
<*th> a Column <*/th>
<*th> another Column<*/th>
<*th colspan=2> yet another Column<*/th>
<*tr>
<*td> a Column
<*td> another Column <*/td>
<*td> yet another Column <*/td>
<*/table>

a Column another Column yet another Column
a Column another Column yet another Column


SPANNING ROWS

<*table border>
<*th rowspan=2> a Column <*/th>
<*th> another Column <*/th>
<*th> yet another Column <*/th>
<*tr>
<*td> a Column <*/td>
<*td> another Column <*/td>
<*td> yet another Column <*/td>
<*/table>

a Column another Column yet another Column
a Column another Column yet another Column



Inserting Graphics and Pictures
Back to home

MAIL ME!