Quote: (@RPGVirtuoso) I can make Mineriva shove a billi...
blade2k » articles & tutorials

jump to:
Tutorials » Tech » HTML

Basic Tables


Reading Article
Author: Haldred
Posted on 09/16/2004
print :: back to list
A basic table tut in HTML

I

wrote this, just because, the Tech tutorial link is pretty... EMPTY!
So here it is.
<table border="###">
Edit ### for the border thickness.
<tr>
That is ... yeah.
<td>TeXt</td>
That is one li'l thing.
</tr>
end TR tag.
</table>
end table tag.
Here's a staff table I make, for staff pages:
<table border="1" cellpadding="1" cellspacing="1" bordercolor="000000" lightbordercolor="000000" darkbordercolor="000000">
<tr>
<td>Username</td>
<td>Position</td>
<td>Email</td>
</tr>
<tr>
<td>Haldred</td>
<td>Webmaster</td>
<td><a href="mailto:webmaster@rendon-gaming.info">webmaster@rendon-gaming.info</a></td>
</tr>
</table>

Edit the obvius. Have fun.