Etichetta HTML <center>

HTML5 non lo supporta.

<center> Il tag <center> è stato utilizzato in HTML4 per allineare centralmente il testo.

Cosa sostituire?

Esempio 1

Allineamento centrale del testo (utilizzando CSS):

<html>
<head>
<style>
h1 {text-align: center;}
p {text-align: center;}
div {text-align: center;}
</style>
</head>
<body>
<h1>Questo è un titolo</h1>
<p>Questo è un paragrafo.</p>
<div>Questo è un div.</div>
</body>
</html>

Prova tu stesso