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>Star Trek</title>
</head>
<head>
<h1>star trek</h1>
<p>
<img src=\"Thumbs/startrek.jpg\" width=\"750\" height=\"400\">
</p>
<ul>
<li>Duration 118 Mins</li>
<li>Action</li>
<li>Date Released 2001</li>
<li>Box Office $25 Million</li>
<li>Director John Doe</li>
</ul>
<center><a href=\"MainViewScreen.html\">Back to Main View Screen</a></center>
</body>
</html>
Solution
<!DOCTYPE html>
<html>
<head>
<title>Star Trek</title>
</head>
<h1>star trek</h1>
<p>
<img src=\"Thumbs/startrek.jpg\" alt=\"image\" width=\"750\" height=\"400\">
</p>
<ul>
<li>Duration 118 Mins</li>
<li>Action</li>
<li>Date Released 2001</li>
<li>Box Office $25 Million</li>
<li>Director John Doe</li>
</ul>
<a style=\"align:center\" href=\"MainViewScreen.html\">Back to Main View Screen</a>
</body>
</html>
