如何在HTML中居中显示文字?

HTML <center>标记用于使该标记附带的内容居中。

注意-现在不推荐使用此标签。

示例

您可以尝试运行以下代码以使HTML中的文本居中-

<!DOCTYPE html>
<html>
   <head>
      <title>HTML center Tag</title>
   </head>
   <body>
      <center>This text is centered</center>
      <p>This is a normal text.</p>
   </body>
</html>