Before HTML5 there used to be a <center> tag that allowed you to center text on your web page. Now it’s deprecated. If you need to center the text on your HTML page, you should use the CSS property text-align.

<p>
  This paragraph is not aligned
</p>

<p style="text-align: center">
  I'm a centrally aligned paragraph
</p>