11. XHTML Basic Document Structure

A basic XHTML document consists of the following main parts:

Example 11.1 Basic XHTML Document Structure:
    <!DOCTYPE ...>
    <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
            <title>...</title>
        </head>
        <body>...</body>
    </html>