left (default value)
center
right
snippet
<html>
<head></head>
<body>
Some text
<table border="1" align="center">
<tr><td>Row1, Column1</td><td>Row1, Column2</td></tr>
<tr><td>Row2, Column1</td><td>Row2, Column2</td></tr>
</table>
Some text
<table border="1" align="right">
<tr><td>Row1, Column1</td><td>Row1, Column2</td></tr>
<tr><td>Row2, Column1</td><td>Row2, Column2</td></tr>
</table>
</body>
</html>
Output
Some text
Row1, Column1 | Row1, Column2 |
Row2, Column1 | Row2, Column2 |
Some text
Row1, Column1 | Row1, Column2 |
Row2, Column1 | Row2, Column2 |