![]() |
|
The Basic Table Commands
First things first. Here's the HTML I wrote to give me the Brady family table:
It looks rough, but look again. There are really only four commands being used again and again. Here's what we use:
ExplanationWhat table commands do is create a series of cells. Each cell's data is denoted by the <TD> command. Please note that even though the table above has each cell (or TD) command on a new line, the cells keep going to the right until you tell it that a new row of cells will start by using the <TR> or Table Row command. Think of it as constructing a Tic Tac Toe board. You'll need nine cells for the board right? Three across in three rows. Use the <TD> command to make three cells across, use <TR> to jump to the next row, and so on until you have nine cells in three rows of three. Nothing to it.
Remember that what ever follows the <TD> command will appear in the cell. And the cells, by column, will be equal size using the largest cell as the model for the others. Advanced Table FeaturesNow on to making the lines between cells. Here, again is that table above:
Ok, so I changed the names, but you get the idea. Below is the HTML I used to post this one. Please note that the commands are the same! All I did was add a few things inside of them
If it looks like all the work is done in the <TABLE> command - it is. You are using three commands to do the work for you:
How about that new "ALIGN" in the <TD> command. I have told the <TD> command I want the data that follows centered within the cell walls outlined in the TABLE command above. Can you do other ALIGN types? Sure. Try ALIGN="left" and ALIGN="right". Use them in combination in different cells. Set one table cell to left. Set another table cell to center. Activating Cells For Links
The commands are the same for this table except you place a link command after the <TD> command. Here's what the command for the upper left hand cell looks like: <TD align = "center"><A HREF="http://www.howamazing.com">HowAmazing</A></TD> By the way, the BORDER, CELLSPACING, AND CELLPADDING commands are all set at 20 in the above table to give you an example of some larger numbers. Images in CellsCan I put images in each of the cells? Yes:
All you have done is followed the TD command with an image command. Again, the command that creates the upper left hand cell is this: <TD ALIGN = "center"><IMG SRC="clip.gif"></TD> Framing Images |
|
Other sites in the HowAmazing.com Network... |
|
Home - Swap Links/Add A Resource - Link To Us - Contact Us -
Web Design - Advertise All rights reserved, HowAmazing.com. |
Exclusive Concepts, Inc