Hi Sandesh
If you want to align the form elements like checkbox, textbox etc, put all these things in the table and align accordingly in the table. I will show you an example...
<form>
<table border ="1">
<tr>
<td align = "center">Enter your name:</td>
<td align = "center"><input type="text" name="name"/></td>
</tr>
<tr>
<td>Enter your current address:</td>
<td><input type="text" name="address"/></td>
</tr>
</table>
</form>
I hope this solves your problem.
Aug 11, 2009