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\">
<html>
<head>
<title>Babylon 5</title>
</head>
<h1>Babylon 5</h1>
<img src=\"Thumbs/Babylon 5.jpg\" width=\"750\" height=\"400\">
<ul>
<li>Duration 100 Mins</li>
<li>Drama</li>
<li>Date Released 2012</li>
<li>Box Office $20 Million</li>
<li>Director George Washington</li>
</ul>
<center><a href=\"MainViewScreen.html\">Back to Main View Screen</a></center>
</body>
</html>
Solution
Answer :
<!DOCTYPE HTML PUBLIC \"-//W3C//HTML 4.01 Transitional//EN\" \"http://www.w3.org/html4/loose.dtd\">
<html>
<head>
<title>Babylon 5</title>
</head>
<h1 style=\"text-align:center;\">Babylon 5</h1>
<div style=\" width:750px; height:400px;\">
<img src=\"Thumbs/Babylon 5.jpg\" >
</div>
<ul>
<li>Duration 100 Mins</li>
<li>Drama</li>
<li>Date Released 2012</li>
<li>Box Office $20 Million</li>
<li>Director George Washington</li>
</ul>
<div style=\"text-align:center;\">
<a href=\"MainViewScreen.html\">Back to Main View Screen</a>
</div>
</body>
</html>
