'align' specifies the alignment of text within the element
<HTML> <Title>Example For align</Title> <BODY> <table width="560" border="8" cellspacing="5" cellpadding="5"> <caption align="bottom">This is the caption text for the table</caption> <tr> <td>Cell 1</td> <td>Cell 2</td> </tr> <tr> <td>Cell 3</td> <td>Cell 4</td> </tr> </table> </BODY> </HTML>