<!DOCTYPE html> 

<html>
    <head>
        <title> my second HTML5 page </title>
    </head>

    <body>
        <h1> Document top-level heading </h1>

        <p> Document text goes here -- ALL document
            text MUST be within an appropriate element
            for well-structured HTML5 
        </p>

        <p>
            <img src="linux-penguin.jpg"
                 alt="a cute linux penguin" />

            <a href="http://users.humboldt.edu/smtuttle">
                S. Tuttle's home page 
            </a>
        </p>

    </body>
</html>