Can XHTML embed more XHTML?

The right to place SVG documents within XHTML documents; but is it also allowed to embed XHTML documents inside other XHTML documents?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Sup</title>
</head>
<body>
    <h1>Hello World!</h1>
    <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
            <title>Nested document</title>
        </head>
        <body>
            <p>This is a sample</p>
        </body>
    </html>
</body>
</html>

      

+2


a source to share


2 answers


No, the element html

is only allowed as the root element of the document.



+1


a source


You can use <iframe>

(although not recommended and should be avoided).



+1


a source







All Articles