Building Web Pages From Ground Zero

By Professor Nibble ã Nibble University 2000-2007

HyperJump to Captions, Borders, Spanning, Align/Valign, Cell Color, Background Image, No Wrap, Width & Height, Assignments

TABLES - Lesson 9

 

BASIC TABLE TAGS

Tables are used for organizing data in rows and columns. You may also use tables to organize your page layout. In the last lesson you saw an example of how to use a table along with a background that produced a graphical left margin. By using a table I was able to place text to the right of the left margin so it could be clearly read. Let's start out, however, with some simple tables that align some data.

All table tags and data must come between these tags:

<TABLE> </TABLE>

The other basic tags you will use are:

<TR> </TR>

<TD> </TD>

<TH> </TH>

They define the rows, columns and any headings. This is what a simple 2 column 3 row table would look like:

<TABLE>
<TR>
<TD>
Row 1 Column 1</TD>
<TD>
Row 1 Column 2</TD>
</TR>
<TR>
<TD>
Row 2 Column 1</TD>
<TD>
Row 2 Column 2</TD>
</TR>
<TR>
<TD>
Row 3 Column 1</TD>
<TD>
Row 3 Column 2</TD>
</TR>
</TABLE>

 

This is the result:

Row 1 Column 1

Row 1 Column 2

Row 2 Column 1

Row 2 Column 2

Row 3 Column 1

Row 3 Column 2

Now, let's break this little guy down. First, notice the table begins and ends with the <TABLE> </TABLE> tags.

You use <TR> </TR> to define each row. Notice there are three sets of these tags - so, three rows.

For every <TD> </TD> set nested inside a <TR> </TR> set, you have a column created. In our example, we have two <TD> </TD> sets within each <TR> </TR> set. Therefore, each row has two columns defined. Now, that wasn't too bad was it?

But, what is the <TH> </TH> tag I mentioned earlier? So good of you to ask. The <TH> </TH> tag is for a heading. Any <TD> </TD> tag set can be replaced by a <TH> </TH> tag set and become a BOLD style heading. Watch me change the columns in row one into headings:

<TABLE>
<TR>
<TH>
Row 1 Column 1</TH>
<TH>
Row 1 Column 2</TH>
</TR>
<TR>
<TD>
Row 2 Column 1</TD>
<TD>
Row 2 Column 2</TD>
</TR>
<TR>
<TD>
Row 3 Column 1</TD>
<TD>
Row 3 Column 2</TD>
</TR>
</TABLE>

Headings Result:

Row 1 Column 1

Row 1 Column 2

Row 2 Column 1

Row 2 Column 2

Row 3 Column 1

Row 3 Column 2

OK. Challenge question - What would you do to make all the data in column one a heading?

Creating more complicated tables can be a real challenge and great fun. I have some fantastic exercises planned for you at the end of this lesson.


top

Captions 

 

Some people like to include a descriptive caption with their table to help explain what the data is all about. To do this, place a

<CAPTION> </CAPTION>

tag right after the starting <TABLE> tag and before row one.

<CAPTION> has an attribute to help you have a little more control over the placement of the caption.

<CAPTION ALIGN=TOP, BOTTOM, RIGHT, LEFT>

You'll have to experiment with the 4 different align choices. Browsers may treat them differently. If you don't use right or left the caption will be centered. I think the two most useful attributes are "top" and "bottom".

 

Example:

 

<TABLE>
<CAPTION ALIGN=BOTTOM>
This is a caption for the table.</CAPTION>
<TR>
<TH>
Row 1 Column 1</TH>
<TH>
Row 1 Column 2</TH>
</TR>
<TR>
<TD>
Row 2 Column 1</TD>
<TD>
Row 2 Column 2</TD>
</TR>
<TR>
<TD>
Row 3 Column 1</TD>
<TD>
Row 3 Column 2</TD>
</TR>
</TABLE>

 

Row 1 Column 1

Row 1 Column 2

 

Row 2 Column 1

Row 2 Column 2

 

Row 3 Column 1

Row 3 Column 2

 

This is a caption for the table.

 

 

 


top

Borders 

 

If you wish to include borders around all your cells, you will need to add the BORDER attribute to the <TABLE> tag. It is quite simple:

<TABLE BORDER>

This will give you a border of one pixel. It is the same thing as putting:

<TABLE BORDER=1>

If you DO NOT want a border simply do not include a border attribute or put:

<TABLE BORDER=0>

To increase the width of your borders, increase the number in the border attribute:

<TABLE BORDER=5>

  Look at this example:

<TABLE BORDER=1>
<CAPTION ALIGN=BOTTOM>
This is a caption for the table.</CAPTION>
<TR>
<TH>
Row 1 Column 1</TH>
<TH>
Row 1 Column 2</TH>
</TR>
<TR>
<TD>
Row 2 Column 1</TD>
<TD>
Row 2 Column 2</TD>
</TR>
<TR>
<TD>
Row 3 Column 1</TD>
<TD>
Row 3 Column 2</TD>
</TR>
</TABLE>

 
This is a caption for the table.
Row 1 Column 1 Row 1 Column 2
Row 2 Column 1 Row 2 Column 2
Row 3 Column 1 Row 3 Column 2


top

Spanning Columns

Tip: More advanced tables can be a bit of a challenge when creating them from scratch. I think it helps to create your table on paper before attempting to code it.

When you create a table, your column widths are going to be determined by the data inside them. That may leave you with an undesirable affect like this:

<TABLE BORDER>
<CAPTION>Points for Read A Thon Contest</CAPTION>
<TR>
<TH>9TH GRADERS</TH>
<TH>10TH GRADERS</TH>
</TR>
<TR>
<TD>Mon</TD>
<TD>Tue</TD>
<TD>Total</TD>
<TD>Mon</TD>
<TD>Tue</TD>
<TD>Total</TD>
</TR>
<TR>
<TD>6</TD>
<TD>4</TD>
<TD>10</TD>
<TD>7</TD>
<TD>2</TD>
<TD>9</TD>
</TR>
</TABLE>
Points for Read A Thon Contest
9TH GRADERS 10TH GRADERS
Mon Tue Total Mon Tue Total
6 4 10 7 2 9

top

By using the COLSPAN attribute in the <TD> or <TH> tag you can fix this sort of problem. In the second row the first three columns have 9th grade data and the last three columns have 10th grade data. Therefore, our data in row one should span the appropriate columns. Look at the example below - in particular how COLSPAN is used. The number inserted after the = sign corresponds to the number of columns you wish to span. Look at this example:

<TABLE BORDER>
<CAPTION>Points for Read A Thon Contest</CAPTION>
<TR>
<TH COLSPAN="3">9TH GRADERS</TH>
<TH COLSPAN="3">10TH GRADERS</TH>
</TR>
<TR>
<TD>Mon</TD>
<TD>Tue</TD>
<TD>Total</TD>
<TD>Mon</TD>
<TD>Tue</TD>
<TD>Total</TD>
</TR>
<TR>
<TD>6</TD>
<TD>4</TD>
<TD>10</TD>
<TD>7</TD>
<TD>2</TD>
<TD>9</TD>
</TR>
</TABLE>
Points for Read A Thon Contest
9TH GRADERS 10TH GRADERS
Mon Tue Total Mon Tue Total
6 4 10 7 2 9

ROWSPAN

This attribute is handled exactly like COLSPAN. The only difference is that you create cells that span more than one row rather than columns. Here is an example of the ROWSPAN attribute:

<TABLE BORDER>
<CAPTION>Points for Read A Thon Contest</CAPTION>
<TR>
<TD ROWSPAN="3">Data</TD>
<TH COLSPAN="3">9TH GRADERS</TH>
<TH COLSPAN="3">10TH GRADERS</TH>
</TR>
<TR>
<TD>Mon</TD>
<TD>Tue</TD>
<TD>Total</TD>
<TD>Mon</TD>
<TD>Tue</TD>
<TD>Total</TD>
</TR>
<TR>
<TD>6</TD>
<TD>4</TD>
<TD>10</TD>
<TD>7</TD>
<TD>2</TD>
<TD>9</TD>
</TR>
</TABLE>
Points for Read A Thon Contest
Data 9TH GRADERS 10TH GRADERS
Mon Tue Total Mon Tue Total
6 4 10 7 2 9


Basically, I added a seventh column, put it in as column number 1, and had it span all three rows. When I try to get fancy with tables I usually find that there is a lot of trial and error involved until I get the desired affect.


top

ALIGN & VALIGN  

The ALIGN attribute is used in <TR><TH><TD> and <TABLE> tags. You can align text to the left, right, center or justify. You do not need to put the align attribute in every tag of a row. Just put it in the initial tag. Using align in the <TABLE> tag is a bit different. This aligns the entire table in relation to the page - to the left, right or center. The default alignment for ALIGN is LEFT.

VALIGN is used in the <TR> <TD> <TH> tags. It may be used along with an ALIGN attribute. Its job is to vertically align the cell data. Your most common choices are top, middle or bottom. If you don't use VALIGN, the default is MIDDLE. When you use VALIGN in the <TR> tag all the columns in that row will be affected. Study this example:

<TABLE BORDER ALIGN=CENTER>
<CAPTION>Align Example</CAPTION>
<TR>
<TD ROWSPAN=2 COLSPAN=2></TD><BR>
<TH COLSPAN=3>HORIZONTAL</TH>
</TR>
<TR>
<TH ALIGN="CENTER">Left</TH>
<TH>Center</TH>
<TH>Right</TH>
</TR>
<TR>
<TH ROWSPAN=4>V</TH>
<TH>Top</TH>
<TD VALIGN=TOP ALIGN=LEFT>Top Left</TD>
<TD VALIGN=TOP ALIGN=CENTER>Top Center</TD>
<TD VALIGN=TOP ALIGN=RIGHT>Top Right</TD>
</TR>
<TR>
<TH>Middle</TH>
<TD VALIGN=MIDDLE ALIGN=LEFT>Middle Left</TD>
<TD VALIGN=MIDDLE ALIGN=CENTER>Middle Center</TD>
<TD VALIGN=MIDDLE ALIGN=RIGHT>Middle Right</TD>
</TR>
<TR VALIGN=BOTTOM>
<TH VALIGN=MIDDLE>Bottom</TH>
<TD ALIGN=LEFT>Bottom Left</TD>
<TD ALIGN=CENTER>Bottom Center</TD>
<TD ALIGN=RIGHT>Bottom Right</TD>
</TR>
</TABLE>


Align Example
HORIZONTAL
Left Center Right
V Top Top Left Top Center Top Right
Middle Middle Left Middle Center Middle Right
Bottom Bottom Left Bottom Center Bottom Right


You need to study the above example carefully. Go back and forth between the source code and the shown result. One note - the source code I show is for learning purposes. In order to make the table look like it does, I had to include some things we haven't yet talked about. I deleted those things from the source code to avoid confusion.

Take a look at the last row of the source code. Notice I put a VALIGN attribute in the <TR> tag instead of each column tag. I did this to show you a slightly different way of handling the desired results. Also notice the second column in the bottom row (Bottom) changes the VALIGN for that one column. Attributes placed in <TH> and <TD> take precedent over <TR>.


top

Cell Color  

You can add a BGCOLOR attribute to a table or to individual cells. The attribute goes in the <TR> <TD> <TH> or <TABLE> tags. Use one of the 16 predefined color names or hexadecimal numbers. The sixteen color names that most browsers recognize are: silver, gray, white, black, maroon, red, green, lime, navy, blue, purple, magenta, olive, yellow, teal, and cyan.

To make an entire table red you could use either of these two techniques:

<TABLE BGCOLOR="RED">

<TABLE BGCOLOR="#FF0000">

To make a row have a background color, put the BGCOLOR attribute in the <TR> tag. To place color in column cells put the attribute in <TH> or <TD> tags. Here are some examples. Study them carefully.

<TABLE BORDER ALIGN="CENTER" BGCOLOR="RED">
<CAPTION><FONT COLOR=#FFFFFF SIZE=2>BGCOLOR="RED" IN THE <TABLE> TAG</FONT></CAPTION>
<TR>
<TD ROWSPAN="3"><FONT COLOR=#FFFFFF>Data</FONT></TD>
<TH COLSPAN="3"><FONT COLOR=#FFFFFF>9TH GRADERS</FONT></TH>
<TH COLSPAN="3"><FONT COLOR=#FFFFFF>10TH GRADERS</FONT><TH>
</TR>
<TR>
<TD><FONT COLOR=#FFFFFF>Mon</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Tue</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Total</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Mon</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Tue</FONT></TD>
<TD><FONT COLOR=#FFFFF>Total</FONT></TD>
</TR>
<TR>
<TD><FONT COLOR=#FFFFFF>6</FONT></TD>
<TD><FONT COLOR=#FFFFFF>4</FONT></TD>
<TD><FONT COLOR=#FFFFFF>10</FONT></TD>
<TD><FONT COLOR=#FFFFFF>7</FONT></TD>
<TD><FONT COLOR=#FFFFFF>2</FONT></TD>
<TD><FONT COLOR=#FFFFFF>9</FONT></TD>
</TR>
</TABLE>

Notice I needed to change the font color in each cell to white so it would show up better on a red background.

BGCOLOR="RED" IN THE <TABLE> TAG
Data 9TH GRADERS 10TH GRADERS
Mon Tue Total Mon Tue Total
6 4 10 7 2 9

<TABLE BORDER ALIGN="CENTER">
<CAPTION><FONT COLOR=#FFFFFF SIZE=2>BGCOLOR COMBOS</FONT></CAPTION>
<TR>
<TD ROWSPAN="3"><FONT COLOR=#FFFFFF>Data</FONT></TD>
<TH COLSPAN="3" BGCOLOR=GREEN><FONT COLOR=#FFFFFF>9TH GRADERS</FONT></TH>
<TH COLSPAN="3" BGCOLOR="#FFFF00"><FONT COLOR=#000000>10TH GRADERS</FONT><TH>
</TR>
<TR BGCOLOR="#00A5C6">
<TD><FONT COLOR=#FFFFFF>Mon</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Tue</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Total</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Mon</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Tue</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Total</FONT></TD>
</TR>
<TR>
<TD BGCOLOR=PURPLE><FONT COLOR=#FFFFFF>6</FONT></TD>
<TD BGCOLOR=PURPLE><FONT COLOR=#FFFFFF>4</FONT></TD>
<TD BGCOLOR=PURPLE><FONT COLOR=#FFFFFF>10</FONT></TD>
<TD BGCOLOR="#FF8429"><FONT COLOR=#FFFFFF>7</FONT></TD>
<TD BGCOLOR="#FF8429"><FONT COLOR=#FFFFFF>2</FONT></TD>
<TD BGCOLOR="#FF8429"><FONT COLOR=#FFFFFF>9</FONT></TD>
</TR>
</TABLE>

BGCOLOR COMBOS
Data 9TH GRADERS 10TH GRADERS
Mon Tue Total Mon Tue Total
6 4 10 7 2 9


top

Background Image  

You can add a background GIF or JPG image to a table or individual cells, but the outcome may be difficult to read. Also, Microsoft and Netscape may handle the tag differently. You will have to play around with this attribute to see just how useful it may be. The attribute is included inside the <TABLE> tag or the <TH> <TD> tag. It looks like this:

<TABLE BACKGROUND="image.jpg">

or

<TD BACKGROUND="image.jpg">

Take a look at these examples:

<TABLE BORDER ALIGN="CENTER" BACKGROUND="fuji.jpg" WIDTH=400 HEIGHT=200>
<CAPTION><FONT COLOR="#FFFFFF">Points for Read A Thon Contest</FONT></CAPTION>
<TR>
<TD ROWSPAN="3">Data</TD>
<TH COLSPAN="3">9TH GRADERS</TH>
<TH COLSPAN="3">10TH GRADERS<TH>
</TR>
<TR ALIGN=CENTER>
<TD>Mon</TD>
<TD>Tue</TD>
<TD>Total</TD>
<TD>Mon</TD>
<TD>Tue</TD>
<TD>Total</TD>
</TR>
<TR ALIGN=CENTER>
<TD>6</TD>
<TD>4</TD>
<TD>10</TD>
<TD>7</TD>
<TD>2</TD>
<TD>9</TD>
</TR>
</TABLE>

Points for Read A Thon Contest
Data 9TH GRADERS 10TH GRADERS
Mon Tue Total Mon Tue Total
6 4 10 7 2 9

<TABLE BORDER ALIGN="CENTER">
<CAPTION><FONT COLOR="#FFFFFF">Points for Read A Thon Contest</FONT></CAPTION>
<TR>
<TD ROWSPAN="3" BACKGROUND="fuji.jpg"<Data</TD>
<TH COLSPAN="3" BACKGROUND="fuji.jpg">9TH GRADERS</TH>
<TH COLSPAN="3" BACKGROUND="fuji.jpg">10TH GRADERS<TH>
</TR>
<TR ALIGN=CENTER>
<TD BACKGROUND="fuji.jpg">Mon</TD>
<TD BACKGROUND="fuji.jpg">Tue</TD>
<TD BACKGROUND="fuji.jpg">Total</TD>
<TD BACKGROUND="fuji.jpg">Mon</TD>
<TD BACKGROUND="fuji.jpg">Tue</TD>
<TD BACKGROUND="fuji.jpg">Total</TD>
</TR>
<TR ALIGN=CENTER>
<TD BACKGROUND="fuji.jpg">6</TD>
<TD BACKGROUND="fuji.jpg">4</TD>
<TD BACKGROUND="fuji.jpg">10</TD>
<TD BACKGROUND="fuji.jpg">7</TD>
<TD BACKGROUND="fuji.jpg">2</TD>
<TD BACKGROUND="fuji.jpg">9</TD>
</TR>
</TABLE>
Points for Read A Thon Contest
Data 9TH GRADERS 10TH GRADERS
Mon Tue Total Mon Tue Total
6 4 10 7 2 9

Notice where the BACKGROUND attribute was placed in the first table. It actually doesn't look too bad. In the second table I put a BACKGROUND attribute in each cell. Microsoft Explorer shows the top upper left of the image in each cell. If I were to make a cell really big, you would be able to see much of the image. Netscape Navigator is reported to show the entire tiny image in each cell. I haven't tested this. Versions of the two major browsers change so often that what may be true today is a falsehood tomorrow.

In the first example I included a WIDTH and HEIGHT attribute that we will talk about soon. By creating a table with approximately the same dimensions as the image, I took advantage of showing as much graphic as possible in my table background. Just remember what we talked about ages ago - you need to have good contrast between background and text.


top

No Wrap  

This attribute prevents a browser from placing the contents of a cell on more than one line. The attribute is placed in the <TH> <TD> tags. You could also use & n b s p ; between words - the code for a non-breaking space. Don't put any spaces between the six letters/symbols. I had to put them here so they would show up. If you want to force a line break in a cell, use <BR> just like you would outside a table. These two examples would give you identical results:

<TD NOWRAP>Evergreen College</TD>

<TD>Evergreen& n b s p ;College</TD>

Again, I put spaces between the non-breaking space code so it would show up in your browser. Be sure not to include the spaces. I don't think I'll give you an example of NOWRAP. It's a pretty simple attribute. I'm ready for this lesson to be over, and I still have one biggy to tell you about. I bet you're anxious to get to the assignments I promised. So, here's the last section about tables.


top

Table & Cell Width & Height  

I saved this attribute for last because we are going to use it two ways. The first is to take control of a table's size. Later, we will use these attributes to control our page layout. The attributes go inside the <TABLE> <TH> <TD> tags and look like this:

WIDTH=X
HEIGHT=X

The X can be size in pixels or the % of full window size. Should you design a table that is too small for the included data, the browser will ignore your stupidity and create more room for its occupants. Go back up to the table with the background of MT. Fuji. Above it you will notice in the code that I placed a WIDTH and HEIGHT attribute in the <TABLE> tag. I gave the width a value of 400 and the height a value of 200. By doing this all the cells were made wider and higher and allowed the entire image background to be displayed. Here is an example of using WIDTH and HEIGHT in a cell tag. Notice what happens to the other cells in the row. Also, the cell that spans three rows is affected. I suppose there are some rare occasions when you would want to do this sort of thing, like possibly including small pictures in a table and adjusting rows to fit the pictures. However, I personally find these attributes more useful when used on the entire table - like the Mt. Fuji table you previously studied.

<TABLE BORDER ALIGN="CENTER">
<CAPTION><FONT COLOR=#FFFFFF SIZE=2>BGCOLOR COMBOS</FONT></CAPTION>
<TR>
<TD ROWSPAN="3"><FONT COLOR=#FFFFFF>Data</FONT></TD>
<TH COLSPAN="3" BGCOLOR=GREEN><FONT COLOR=#FFFFFF>9TH GRADERS</FONT></TH>
<TH COLSPAN="3" BGCOLOR="#FFFF00"><FONT COLOR=#000000>10TH GRADERS</FONT><TH>
</TR>
<TR BGCOLOR="#00A5C6">
<TD WIDTH=100 HEIGHT=50><FONT COLOR=#FFFFFF>Mon</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Tue</FONT></TD>
<tTD><FONT COLOR=#FFFFFF>Total</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Mon</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Tue</FONT></TD>
<TD><FONT COLOR=#FFFFFF>Total</FONT></TD>
</TR>
<TR>
<TD BGCOLOR=PURPLE><FONT COLOR=#FFFFFF>6</FONT></TD>
<TD BGCOLOR=PURPLE><FONT COLOR=#FFFFFF>4</FONT></TD>
<TD BGCOLOR=PURPLE><FONT COLOR=#FFFFFF>10</FONT></TD>
<TD BGCOLOR="#FF8429"><FONT COLOR=#FFFFFF>7</FONT></TD>
<TD BGCOLOR="#FF8429"><FONT COLOR=#FFFFFF>2</FONT></TD>
<TD BGCOLOR="#FF8429"><FONT COLOR=#FFFFFF>9</FONT></TD>
</TR>
</TABLE>

BGCOLOR COMBOS
Data 9TH GRADERS 10TH GRADERS
Mon Tue Total Mon Tue Total
6 4 10 7 2 9

Well, the more I think about this, the more I'm convinced I should include the TABLES AS PAGE LAYOUT in its own chapter. I've never seen a lesson like I intend to bless you with anywhere on the net. That doesn't mean it is no where to be found. I've hardly been everywhere on the Internet. I want to give you lots of examples and plenty of practice, so lets end this lesson on TABLES and get on with the practice assignments.


top

Assignment 1 - Lesson 9

For your first assignment you are to create a simple table from the following data. The actual data for the table will be in yellow. The red heading should not be typed. Include a border of size two. Besides Row 1, make each last name a heading as well. Center your table on the page. Print out your table and source code to hand in.

TOP CENTERED CAPTION: 1998 Seattle Mariners Statistics
Heading Row 1: Batting, AB, R, H, HR, RBI, SB, AVG
Row 2: Martinez, 556, 86, 179, 29, 102, 1, .322
Row 3: Rodriquez, 686, 123, 213, 42, 124, 46, .310
Row 4: Segui, 522, 79, 159, 19, 84, 3, .305
Row 5: Hill, 259, 37, 75, 12, 33, 1, .290
Row 6: Griffey, 633, 120, 180, 56, 146, 20, .284
Row 7: Bell, 420, 48, 115, 10, 49, 0, .274
Row 8: Davis, 502, 68, 130, 20, 82, 4, .259
Row 9: Wilson, 325, 39, 82, 9, 44, 2, .252
Row 10: Buhner, 244, 33, 59, 15, 45, 0, .242
Row 11: Monohan, 211, 17, 51, 4, 28, 1, .242
Row 12: Ducey, 217, 30, 52, 5, 23, 4, .240
Row 13: Oliver, 240, 20, 54, 6, 32, 1, .225

 

Assignment 2 - Lesson 9

Create the following table exactly as shown. The top row of table cells are headings. Three cells have links. The link can be to tomato.htm, carrot.htm and lettuce.htm. Three cells have images. Three cells have lists. You will be graded on how well you make a table that looks like the one shown. Print out your table and source code to hand in.

Assignment 2 Lesson 9 Table Exercise

 

Assignment 3 - Lesson 9

Create the following table exactly as shown. Notice that 6 of the table cells are headings. You will be graded on how well you make a table that looks like the one shown. Print out your table and source code to hand in.

Assignment 3 Lesson 9 Table Exercise

 

Assignment 4 - Lesson 9

Create the following table exactly as shown. The first column, last column, first row and caption should all be bolded. You will be graded on how well you make a table that looks like the one shown. Print out your table and source code to hand in.

Assigment 4 Lesson 9 Table Exercise

top

Table of Contents

Lesson 10