![]() Tables Tables are used in almost every web page and have many uses. Basically they are a way to partition off portions of the page in a grid formation. They can be bordered or invisible. Everything about a table can be manipulated with very pleasing results.
Before we make a table I will explain the main elements (tags).
Open Page2.
<html xmins=http://www.w3.org/1999/xhtml"> <head > <title > Page 2 </title > <meta name="GENERATOR"content="Arachnophilia 5.5"> <meta name="FORMATTER"content="Arachnophilia 5.5"> </head > <body bgcolor="#ffffff"text="#000000"link="#0000ff"vlink="#800080"alink="#ff0000"> <div align="center"><H1 >My Second Page </H1 > Make some space here </div > </body > </html >
Go to Macros - Secondary Toolbars - Tables and click on TableWiz
Click 'Create' <table cellspacing="0" cellpadding="10" border="5" width="80%" > <tr > <!-- Row 1 Column 1 --> <td > R1C1 </td > <!-- Row 1 Column 2 --> <td > R1C2 </td > <!-- Row 1 Column 3 --> <td > R1C3 </td > </tr > <tr > <!-- Row 2 Column 1 --> <td > R2C1 </td > <!-- Row 2 Column 2 --> <td > R2C2 </td > <!-- Row 2 Column 3 --> <td > R2C3 </td > </tr > And this is how it will show on the page.
The place markers will show in their cells when you preview
We can now look at the variables. <table cellspacing="0" cellpadding="10" border="5" width="80%" bgcolor="pink" > <tr > <!-- Row 1 Column 1 --> <td bgcolor="yellow" width="300" > R1C1 </td > <!-- Row 1 Column 2 --> <td background="mybackground.jpg" > R1C2 </td > I am not going for 'Pretty' here but it gives you an idea.
In the next tutorial we will use a table in a normal way and cover linking graphics to other pages. |