I can not get this web form to align left on a landing page That I am in the middle of creating ( its no where near complete but, IO cant get the webform in the corrct spot): http://dsninformation.com/nov11/moneygirl3.php Here is the code I am trying to left align.
<td align="left">
<table style="width: 544px; height: 50px;" border="0"
cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="width: 544px; height: 50px; text-align: left;"> </td>
</tr>
</tbody>
</table>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<?php $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://dsdomination.com/xtreme/generate_form.php");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, true);
$data = array(
'key' => '7hgefQ6dEeCnQLaO1jo5'
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
echo $output;
?><br>
</td>
</tr>
</tbody>
</table>
If anyone could please help me out I would greatly appreciate it.