View Full Version : Help w/Table


Buffy22
01-13-2003, 09:22 PM
Ok, I want to make a table so it looks like this:

Skins
Indian Heads
Walls/Floors

Chris
Stiles Skins



And I want a border around it, too. Can anyone help me with the code?

thezeppzone
01-13-2003, 10:00 PM
depending on how large you want it,

<table border="1" bordercolor"#color" width="width" height="height">
<tr>
<td>
<p>Skins</p>
</td>
</tr>
<tr>
<td>
<p>Indian Heads</p>
</td>
</tr>
<tr>
<td>
<p>Walls/Floors</p>
</td>
</tr>
<tr>
<td>
<p>Skins</p>
</td>
</tr>
<br>
<tr>
<td>
<p>Chris</p>
</td>
</tr>
<tr>
<td>
<p>Stiles Skins</p>
</td>
</tr>
</table>

Hope thats what you wanted.