giddyup306,
Good start on the site. When you use a link tag "<a>" you need to have a closing tag "</a>" after what it is you want linked. Try putting </a> after your thumbnail image. For example instead of :
<a href="1-01-10-06.jpg"> <p>
<img alt="engine out" src="1-01-10-06.jpg" width=100 height=100>
<br><p><br>
<p>
<p>Engine's out.
Try:
<a href="1-01-10-06.jpg">
<img alt="engine out" src="1-01-10-06.jpg" width=100 height=100>
</a>
<br><br><br>
<p>
<p>Engine's out.
Oh, and I believe you were trying to use <p> as a page break. Just use <br> instead. <p> is the tag for paragraph. Keep going with the site.