HTML Table Align

This attribute is used top align a table to either the left or right .

Example for HTML Table Align

<!Doctype HTML>
<html>
<Head>
<Title>Your Web site Title</Title>
</Head>
<Body >
<table border=1 align=left>
<tr > <td>Sno</td ><td>Name</td ></tr>
<tr > <td>1</td ><td>Johan</td ></tr>
</table>
<Body>
</html>