How do I place images side-by-side with captions underneath? I'm currently using a table to accomplish this effect and it looks like this:
<table align="center">
<tr>
<td>
<img style="width: 200px; height: 275px" src="image"/>
<br/><a href="link">title</a>
</td>
<td>
<img style="width: 200px; height: 275px" src="image"/>
<br/><a href="link">title</a>
</td>
</tr>
</table>
I was wondering if there was a better way to do this without using tables.