Simple page

This page includes an image and and error!

example simple page
image NN

The second image tag purposely mis-specifies the file name, so you can see the alt text.



<html>
  <head>
    <title>
      Image Page
    </title>
  </head>
  <body>
    <h1>
      Simple page
    </h1>
    <p>
      This page includes an image and and error!
    </p>
    <img src="ch01ex01.gif" alt="example simple page">
    <br>
    <img src="ch01exNN.gif" alt="image NN">
    <p>The second image purposely mis-specifies the file name, so you can see the <strong>alt</strong> text.</p>
  </body>
</html>