Etiqueta HTML <center>

No es compatible con HTML5.

<center> La etiqueta se utiliza en HTML4 para alinear texto al centro.

¿Qué usar en su lugar?

Ejemplo 1

Alinear texto al centro (usando CSS):

<html>
<head>
<style>
h1 {text-align: center;}
p {text-align: center;}
div {text-align: center;}
</style>
</head>
<body>
<h1>Este es el título</h1>
<p>Esto es un párrafo.</p>
<div>Esto es un div.</div>
</body>
</html>

Prueba por tu cuenta