Part B:
You create a table caption using the < CAPTION > tag. The code for the < CAPTION > tag is:
< CAPTION ALIGN=value > caption text < /CAPTION >
where value indicates the caption placecment - either TOP (above the table) or BOTTOM (below the table). In either care, the caption will be centered in relation to the table. Because the < CAPTION > tag works only with tables, the tag must be placecd in the < TABLE > tags.
Your code with the < CAPTION > tag should look like:
Note: Remove X and extra spacecs in code to properly create your table
< XTABLE >
< XCAPTION ALIGN=TOP >Some Stats on Me!< X/CAPTION >
< XTR >
< XTH > Name < X/TH >
< XTH > Age < X/TH >
< XTH > Birthday < X/TH >
< XTH > Hair Color < X/TH >
< X/TR >
< XTR >
< XTD > Jessica < X/TD >
< XTD > 17 < X/TD >
< XTD > March 16, 1985 < X/TD >
< XTD > Red < X/TD >
< X/TR >
< X/TABLES >
This is what your table should looks like:
Some Stats on Me!
| Name |
Age |
Birthday |
Hair Color |
| Jessica |
17 |
March 16, 1985 |
Red |