i am trying to align the header to the left of the page.but it is aligned to the center of the page.how to align it to the center by using css? is there any css property to align the table header to the left of the page?
my code
<style type="text/css">
body {
margin: 0;
padding: 0;
}
#gobutton {
padding:5px 25px;
color:#0000ff;
font-size:1.1em;
}
</style>
<table align="center">
<tr>
<td>
<h2>
<img src="lock.jpg" width="80" height="30"/>
Login Form
</h2>
</td>
</tr>
<tr>
<td>
<table>
<form name="new" action="" onsubmit="">
<tr>
<td> <p>User name:<p> </td>
<td><input type="text"></td>
</tr>
<tr>
<td><p>Password:<p></td>
<td><input type="text"></td>
</tr>
<tr>
<td colspan="2" align="center">
<input id="gobutton" type="submit" value="Go!"/>
</td>
</tr>
</form>
</table>
</td>
</tr>
</table>