pls use the validator w3org to check all the errors on this
pls use the validator w3.org to check all the errors on this codes below and past the correct one so i can compare the 2 to see my mistakes
<!DOCTYPE html PUBLIC \"-//W3C//HTML 4.01 Transitional//EN\" \"http://www.w3.org/html4/loose.dtd\">
 <body style=\"background-color:light gray;\">
 <html>
<head>
 <title>Main View Screen</title>
 </head>
<h1 align=\"center\">\"Choose your show\"</h1>
<h2>unordered list</h2>
<p>
 <a href=\"Star Trek.html\">
 <img src=\"Thumbs/Startrek.jpg\" alt=\"Star Trek\">
 </a>
 <a href=\"Babylon 5.html\">
 <img src=\"Thumbs/Babylon 5.jpg\" alt=\"Babylon 5\">
 </a>
 <a href=\"Firefly.html\">
 <img src=\"Thumbs/Firefly.jpg\" alt=\"Firefly\">
 </a>
 </p>
<ul>
 <li>Stargate</li>
 <li>Farscape</li>
 <li>Battlestar Galactica</li>
 <li>Doctor Who</li>
 </ul>
</body>
 </html>
Solution
<!DOCTYPE html PUBLIC \"-//W3C//HTML 4.01 Transitional//EN\" \"http://www.w3.org/html4/loose.dtd\">
<html>
<head>
 <title>Main View Screen</title>
 </head>
<body style=\"background-color:LightGray;\">
<h1 align=\"center\">\"Choose your show\"</h1>
<h2>unordered list</h2>
<p>
    <a href=\"Star Trek.html\">
    <img src=\"Thumbs/Startrek.jpg\" alt=\"Star Trek\">
    </a>
   <a href=\"Babylon 5.html\">
    <img src=\"Thumbs/Babylon 5.jpg\" alt=\"Babylon 5\">
    </a>
   <a href=\"Firefly.html\">
    <img src=\"Thumbs/Firefly.jpg\" alt=\"Firefly\">
    </a>
 </p>
<ul>
 <li>Stargate</li>
 <li>Farscape</li>
 <li>Battlestar Galactica</li>
 <li>Doctor Who</li>
 </ul>
</body>
 </html>
 ---------------------------------------------------------------------
 Explanation
HTLM tag sequence
 First DOCTYPE
 <html> <head></head>
 <body></body> </html>
Color name should be LightGray. If given \"light gray\", system may not understand. Since LightGray is a defined color name, should give this only.


