HTML Code:
<!-- snip -->
<div id="slider-wrapper">
<div id="slider" class="nivoSlider">
<a href="about.htm"><img src="images/aboutus_hpage.png" alt="About Us" />
<a href="web-design.htm"><img src="images/design_hpage.png" alt="Web Design" />
<a href="animation.htm"><img src="images/animation_hpage.png" alt="Animation" />
<a href="social-media.htm"><img src="images/socialmedia_hpage.png" alt="Social Media" />
</div>
</div>
<!-- etc. -->
Right about line 65, you have an opening anchor tag (the one with href="social-media.html"
) which has no matching closing tag.
Actually, none of those hyperlinks are closed, but Chrome (and most likely, other browsers too) is "fixing" your markup and closing the other hyperlinks when it comes to the next opening tag (since anchors cannot be nested (that's probably the error you're referring to)). However, you shouldn't rely on browsers guessing what you meant - fix it yourself!
Bookmarks