
How do I align a table to the right (or left)?

Hi friends,
You can use <TABLE ALIGN="right"> to aling a table to the right. (Use ALIGN="left" to float it to the left.) Any content that follows the closing tag will flow around the table. Shown in this example:
The table in this example will aling to the right.
<table align="right">...</table>
The table in this example will aling to the left.
<table align="left">...</table>