frame
The frame tag will create a frame on the top (above) or bottom (below) of your table instead of all the way around like the border tag does.The code for the frame tag goes inside the table tags. The border tag is still used to define the size of the frame. The code will look like this:
<table border="3" frame="below">
<tr>
<td>row 1, column 1</td><td>row 1, columnn 2</td>
</tr>
</table>
Below is what this looks like:


