Hola a todos!
Alguien sabe como usar un espacio de nombres ( xmlns ) en xhtml y que valide.
Por ejemplo, intento hacer algo así:
Código 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"
xmlns:dc="http://www.misitio.com/2011/dcns">
<head>
<title>Página</title>
</head>
<body>
<ul>
<li dc:item="1">Item 1</li>
<li dc:item="2">Item 3</li>
<li dc:item="3">Item 3</li>
</ul>
</body>
</html>
No se si está mal la declaración del espacio de nombres o que es lo que pasa pero no hay manera de hacer que valide.
Muchas gracias.