Align="center" is deprecated and not recommended to use anymore. You can easily do this with CSS. Simply set the left and right margins to "auto" on a div which has had the width declared and it will be centered.
Just put your div in your page
and put this in your CSS:
#bodybox {
width: 80% (or fixed width)
margin: auto;
}