El atributo HTML <html> xmlns se usa para especificar el espacio de nombres xml para un documento.
Nota importante: este atributo se requiere principalmente en XHTML, no es válido en HTML 4.01 y es opcional en HTML 5.
Sintaxis:
<html xmlns="http://www.w3.org/1999/xhtml">
Valores de atributos:
- https://www.geeksforgeeks.org/ Define el espacio de nombres a utilizar (para documentos XHTML).
Ejemplo:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.geekforgeeks.org//xhtml"> <head> <title>Title of the document</title> </head> <body style="text-align: center;"> <h1>GeeksForGeeks</h1> <h2>HTML xmlns Attribute</h2> The content of the document...... </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo <HTML> xmlns se enumeran a continuación:
- Apple Safari 1.0
- Google Chrome 1.0
- Firefox 1.0
- Ópera 1.0
- Internet Explorer 6.0
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA