Aligning a formtable with button
- by Hulk
In the below code how to align the the print button next to the table and not below or above it.
<div id="content">
<form action="Empform" method="post" name="emp">
<tr><th>Name</t></tr>
<tr><td></td></tr>
</table>
<br>
<br>
<label>Comments: </label>
<br>
<textarea rows=10 cols=75></textarea>
</form>
<input type="button" value="Copy" id="print" onclick="javascript:copy();" style="display:inline;/>
<br>
</div>
Thanks..