In the first part of this lesson you learned how to create a basic table. Now you will learn to add a few simple codes to your table to make it look better on your Web page.
caption
The caption tags will serve as a title or explanation and show up at the top of the table.The code for the caption goes after the table code and looks like this:
<table border="1">
<caption>This is the caption</caption>
<tr>
<td>row 1, column 1</td><td>row 1, columnn 2</td>
</tr>
</table>
Below is what this looks like:


