<!DOCTYPE html> <!-- HTML document type declaration; not an HTML element -->
<html> <!-- The start of the HTML document -->
    <head>
        <!-- The document's metadata -->
    </head>
    <body>
        <!-- The document's content -->
    </body>
</html> <!-- The end of the HTML document -->
<!DOCTYPE html>
<html>
    <head>

    </head>
    <body>

    </body>
</html>
<html> <!-- Repeated HTML document -->
    <head>

    </head>
    <body>

    </body>
</html>
<!DOCTYPE html>
<html>
    <head>

    </head>
    <div> <!-- Invalid child element -->

    </div>
    <body>

    </body>
</html>
<!DOCTYPE html>
<html lang="en"> <!-- Specifies the primary language of the document -->
    <head>
        <title>Your Descriptive Page Title Here</title>
    </head>
    <body>
        <h1>This is a heading</h1>
        <p>This is a paragraph.</p>
    </body>
</html>