Forum Moderators: open
Instead of the now deprecated <center> tag we use CSS.
So, you can use any element, eg <p> and using CSS centre align the content. For example:
<p class="alignCentre">This text will be aligned to the centre!</p>
And in the CSS:
p.alignCentre {
text-align:center;
}
HTH