Here is the code I am currently using. Strangely, everything below MSN.com turns into a link. I have double-checked my CSS and suspect that the issue lies there. However, I wanted to first explore if there might be an underlying problem in the HTML side of things?
<a href="http:msn.com" target="blank"><img class="makeBlock" src="images/scenery.jpg" alt="This is a clickable image"></a><br><br>
<!-- One way to utilize this functionality is to have a nice image button saved and use that to link to stuff -->
<!-- An array of images that are thumbnail size that can be clicked to go to a new window for the bigger version -->
<a href="http://yahoo.com" target="blank"><img src="images/scenery.jpg" alt="thumbnail size to link" width="width 52" height="70">
<a href="http://yahoo.com" target="blank"><img src="images/scenery.jpg" alt="thumbnail size to link" width="width 52" height="70">
<a href="http://yahoo.com" target="blank"><img src="http://freeforcommercialuse.net/wp-content/uploads/2017/08/msp_1701_4269.jpg" alt="thumbnail size to link" width="width 52" height="70">
<a href="http://yahoo.com" target="blank"><img src="images/scenery.jpg" alt="thumbnail size to link" width="width 52" height="70">
<a href="http://yahoo.com" target="blank"><img src="images/scenery.jpg" alt="thumbnail size to link" width="width 52" height="70">
<a href="http://google.com" target="blank"><img src="images/scenery.jpg" alt="thumbnail size to link" width="width 52" height="70">
<br>
<br>
</div>
<!-- The following creates an image map using coordinates so users can click on different areas and go to diverse locations -->
<img src="http://freeforcommercialuse.net/wp-content/uploads/2017/08/msp_1701_4269.jpg" usemap="#scenery">
<map name="scenery">
<area shape="rect" alt="Left side strong side" coords="0,10,536,614" href="https://nba.com" target="blank"></area>
</map>
<!-- An unordered list is known as a bullet list. An ordered list uses numbers -->
<ul>
<li>Sun</li>
<li>Moon</li>
<li>Test</li>
</ul>
<ol>
<li>Ordered Sun</li>
<li>Ordered Moon</li>
<li>Ordered Test</li>
</ol>
<table>
<tr>
<td>Apples R1C1</td>
<td>Oranges R1C2</td>
</tr>
<tr>
<td>Pears R2C1</td>
<td>Peaches R2C2</td>
</tr>
</table>