How do you make an HTML table with a table border on only one of the <td></td> sections?

Ian

New member
I'm really trying to have here an html table that has a picture on the left, and in the same row a paragraph with a table border around it... I got this far, but am really confused, it doesn't work! Please help! Here's the code:

<table>
<tbody>
<tr>

<td>
<div style="text-align: center;">
<img src="100_0293.jpg" title="">
</div>
</td>

<td>
<table border="1" style="background-color: rgb(240, 240, 240);>
<tr>

<td>
<div style="text-align: center;">
<p>
blah blah blah...
</p>
</div>
</td>

</tr>
</table>
</td>

</tr>
</tbody>
</table>
 
Back
Top