May 1998
Beginner
1128 pages
30h 26m
English
An HTML table is a rectangular grid of rows and columns in a Web page. You can enter all kinds of information into a table, including text, numbers, links, and even images. Your tables will always begin with the following basic container:
<TABLE> </TABLE>
All the other table tags fit between these two tags. There are two things you need to know about the <TABLE> tag:
When that's done, most of your remaining table chores will involve the following four-step process:
1. |
Add a row.
|
2. |
Divide the row into the number of columns you want.
|
3. |
Insert data into each cell.
|
4. ... |