La etiqueta <html> en HTML se usa para definir la raíz de los documentos HTML y XHTML. La etiqueta <html> le dice al navegador que es un documento HTML. Es el segundo contenedor externo para todo lo que aparece en un documento HTML seguido de la etiqueta <!DOCTYPE>. La etiqueta <html> requiere una etiqueta inicial y otra final.
Sintaxis:
<html> HTML Contents... </html>
Valor de atributo: la etiqueta <html> contiene xmlns de atributo único cuyo valor de atributo es http://www.w3.org/1999/xhtml . Se utiliza para definir atributos de espacio de nombres.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <head> <title> How to define the root of an HTML document? </title> </head> <body style="text-align: center;"> <h1 style="color: green;"> GeeksforGeeks </h1> <p> A computer science portal </p> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> How to define the root of an HTML document? </title> </head> <body style="text-align: center;"> <h1 style="color: green;"> GeeksforGeeks </h1> <p> A computer science portal </p> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari