Etiqueta HTML <center>
O HTML5 não suporta.
<center>
A tag <center> é usada para alinhar texto no HTML4.
O que substituir?
Exemplo 1
Alinhamento central de texto (usando CSS):
<html> <head> <style> h1 {text-align: center;} p {text-align: center;} div {text-align: center;} </style> </head> <body> <h1>Este é o título</h1> <p>Este é um parágrafo.</p> <div>Este é um div.</div> </body> </html>