Using CSS - see this tutorial that says align is deprecated (but it works for now) and that text-align won’t work on the table itself.
<table class="center">
...
</table>
table.center {
margin-left:auto;
margin-right:auto;
}
Another source
table {
display: block;
margin-left: auto;
margin-right: auto;
width: 40%;
}