I don't really have a lot of information for this tutorial. Tables are easy, so the next one will be a really 'big' tutorial on making your site more appealing.
Ok, so we should have a decent site by now.
This tutorial is gonna be all about Tables.
To start a table type in this code anywhere in the <body>.
TR are the number of rows you want. TD is the number of columns your table will have. Go and mess around with adding in rows and columns. Next tutorial will be a CSS tutorial and making a background and some other things with the body of the site.
Ok, so we should have a decent site by now.
This tutorial is gonna be all about Tables.
To start a table type in this code anywhere in the <body>.
Code:
<table border="3px" width="400px">
<tr>
<td>Hello</td>
</tr>
<tr>
<td>Bye</td>
</tr>
</table>
TR are the number of rows you want. TD is the number of columns your table will have. Go and mess around with adding in rows and columns. Next tutorial will be a CSS tutorial and making a background and some other things with the body of the site.