Forgot Password / Register
Site Statistics
Total Members: 520
Total Tutorials: 242
Newsest User: 8884244477
Todays Unique Hits: 643
0 Users 5 Guests Online

Basic Tables

Tables are commonly used in HTML to sort layout, download sections and other things, in this tutorial i will show you the basics to tables in HTML.

First you have to start you table with the <TABLE> tag. After that add a table row which is the <TR> tag and you should get the following:

Code
<TABLE>
<TR>


Now you have to add some data in the row by putting a <TD> tag, standing for table data and put what you want inbetween and close the tag with </TD> and close the table row with </TR> and then end the table with the end table tag </TABLE> and you should get the following:

Code
<TABLE>
<TR>
<TD>
Stuff here..
</TD>
</TR>
</TABLE>


And thats the basic's to tables in HTML, god that took forever to write out. :)
Craig
Author:
Views:
1893
Rating:
There are currently no comments for this tutorial.