I'm trying to get the text in tables to align with each other.
They're displaying like this
Nutrition First Fitness
772 south blueridge lane
Alpine, Utah
I would like them to be aligned like this
Nutrition First Fitness
772 south blueridge lane
Alpine, Utah
Here is the code www.ProfessionalTrainerNetwork.com
<TABLE ALIGN=center
width="800" border="0" cellspacing="0" cellpadding="0" text-align="center">
<tr align="center" valign="top">
<!--- Company Name --->
<td> Nutrition First Fitness </td>
<td> Optimum Fitness </td>
<td> Alpine Fitness </td>
</tr>
</table>
<table ALIGN="center" width="800" border="0" cellspacing="0" cellpadding="0">
<!--- Street Address --->
<tr align="center" valign="top">
<td>772 South Blueridge lane </td>
<td>772 South Blueridge lane </td>
<td>772 South Blueridge lane </td>
</tr>
</table>
<table ALIGN="center" width="800" border="0" cellspacing="0" cellpadding="0">
<!--- City, State, Zip code --->
<tr>
<td>Alpine, Utah 84004 </td>
</tr>
</table>








Bookmarks