What is HTML?

HTML: part 1

HTML: part 2

HTML: part 3

Tables Introduction



  More...


 
 

Tables
Tables provide you with a easy and powerful way of presenting data. The basic table tags are <TABLE>, <CAPTION>, <TR>, and <TD>.

Here is a simple example of a table. Consider the following code:
<table>
<caption>Title of my table</caption>
<tr>
<td>column 1, row 1</td>
<td>column 2, row 1</td>
</tr>
<tr>
<td>column 1, row 2</td>
<td>column 2, row 2</td>
</tr>
</table>



The following will be displayed:
 

Title of my table
column 1, row 1 column 2, row 1
column 1, row 2 column 2, row 2


Explanation:

<TABLE> - Tag used to create tables

<TR> - tag used to create a row

<TD> - tag used to create a cell within the row

<CAPTION> - Use this to put a title for your table *This tag is optional

  Call 1-314-596-8750  First 15 minutes Free