how to put images in a table html code example
Example: html image in table
<table>
<tr>
<td>
<img src="./pathToYourImage/imageName.jpg" alt="Your Image"/>
</td>
</tr>
</table>
<table>
<tr>
<td>
<img src="./pathToYourImage/imageName.jpg" alt="Your Image"/>
</td>
</tr>
</table>