La etiqueta <center> en HTML se usa para establecer la alineación del texto en el centro. Esta etiqueta no es compatible con HTML5. La propiedad de CSS se usa para establecer la alineación del elemento en lugar de la etiqueta central en HTML5.
Sintaxis:
<center> Contents... </center>
Atributos: Esta etiqueta no acepta ningún atributo.
Ejemplo 1: En este ejemplo, simplemente usamos el contenido de Hi Geeks en la etiqueta del centro HTML.
HTML
<!DOCTYPE html> <html> <body> <h2>Welcome to GeeksforGeeks</h2> <!--center tag is used here--> <center>Hi Geeks</center> </body> </html>
Producción:
Ejemplo 2: Este ejemplo ilustra la etiqueta de centro HTML.
HTML
<!DOCTYPE html> <html> <body> <!--center tag starts here --> <center> <h1>GeeksforGeeks</h1> <h2><center> tag</h2> <p>GeeksforGeeks: A computer science portal for geeks</p> <!--center tag ends here --> </center> </body> </html>
Producción:
Ejemplo 3: use la propiedad CSS en HTML5 para establecer la alineación del texto en el centro.
HTML
<!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <!--center using CSS style --> <h2 style="text-align: center"> CSS center property </h2> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Microsoft Edge 12 y superior
- explorador de Internet
- Firefox
- Ópera
- Safari