I created a HTML page with JQuery and Fancybox but WC3 validator refuses to validate it. It is still giving me 14 errors but I can't find anything wrong with my code. There are a few errors with normal text in my strings and a few errors on my opening and closing brackets.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>MagicMediaMuse - Personal Gallery</title>
<link href="css/layout.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="./fancybox/jquery.fancybox-1.3.1.css" media="screen" />
<style type="text/css">
.galLink {
color:white;
}
.galLink:hover{
color:#FF6;
}
</style>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="fancybox/jquery.mousewheel-3.0.2.pack.js"></script>
<script type="text/javascript" src="fancybox/jquery.fancybox-1.3.1.js"></script>
<script type="text/javascript" src="js/galleryScript.js"></script>
</head>
<body>
<div id="wrapper">
<div id="header">
<ul>
<li><a href="index.html">Bio</a></li>
<li><a href="gallery.html">Graphics</a></li>
<li><a href="websites.html">Websites</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div><!-- End header -->
<div id="content">
<h1>Graphic Design</h1>
<div id="left">
<table cellspacing="10">
<tr>
<td><a class="zoom" rel="gallery" title="An image entirely created using a shape and layer effects. <br/> <a class='galLink' href='wolfGlow.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/wolfGlow/finished.jpg"><img src="images/gallery/wolfGlow/finishedTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="A box design I created using vanishing point. <br/> <a class='galLink' href='cereal.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/cereal/finished.jpg"><img src="images/gallery/cereal/finishedTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="An underwater poster created in Photoshop. It has a lot of filters and adjustments. <br/> <a class='galLink' href='underwater.html' onclick='$.fancybox.close();'>Click Here For More Info</a>"href="images/gallery/underwater/finished.jpg"><img src="images/gallery/underwater/finishedTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="A poster I created from scratch where I made a reflection on the water. <br/> <a class='galLink' href='reflection.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/reflection/finished.jpg"><img src="images/gallery/reflection/finishedTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="An image that I created by turning a daylight setting into nighttime. <br/> <a class='galLink' href='silentNight.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/silentNight/finished.jpg"><img src="images/gallery/silentNight/finishedTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="A poster I created with brushes and filters. <br/> <a class='galLink' href='wolfLake.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/wolfLake/finished.jpg"><img src="images/gallery/wolfLake/finishedTb.jpg" alt="" /></a></td>
</tr>
<tr>
<td><a class="zoom" rel="gallery" title="A poster I created with blurs and filters. <br/> <a class='galLink' href='apocalypse.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/apocalypse/finished.jpg"><img src="images/gallery/apocalypse/finishedTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="A website template that I made in Photoshop. <br/> <a class='galLink' href='animeSite.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/anime/finished-home.jpg"><img src="images/gallery/anime/finished-homeTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="A depressed setting using Photoshop layer blending modes. <br/> <a class='galLink' href='darkAngel.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/darkAngel/finished.jpg"><img src="images/gallery/darkAngel/finishedTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="A magical setting I created by masking a few different elements. <br/> <a class='galLink' href='starryNight.html' onclick='$.fancybox.close();'>Click Here For More Info</a>"href="images/gallery/starryNight/finished.jpg"><img src="images/gallery/starryNight/finishedTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="A shootout poster that I made using blurs, adustment layers, and masks. <br/> <a class='galLink' href='jail.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/jail/finished.jpg"><img src="images/gallery/jail/finishedTb.jpg" alt="" /></a></td>
<td><a class="zoom" rel="gallery" title="A poster I created showing law enforcement going overboard <br/> <a class='galLink' href='freedom.html' onclick='$.fancybox.close();'>Click Here For More Info</a>" href="images/gallery/freedom/finished.jpg"><img src="images/gallery/freedom/finishedTb.jpg" alt="" /></a></td>
</tr>
</table><!-- End gallery -->
<div class="clear"></div>
</div><!-- End left -->
<div class="clear"></div>
</div><!-- End content -->
<div id="footer">Copyright © 2010 Richard Hung. All rights reserved.</div>
</div><!-- End wrapper -->
</body>
</html>