pls use the validatorw3org to check for errors on this code
pls use the validator.w3.org to check for errors on this code and write down the correct code that will pass the validation
<!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>
 <center><a href=\"MainViewScreen.html\">Back to Main View Screen</a></center>
 </body>
 </html>
Solution
<!DOCTYPE html>
 <html>
 <head>
 <title>Star Trek</title>
 <script>a.blocktext {
     text-align: center
 }</script>
 </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 class =\"blocktext\" href=\"MainViewScreen.html\">Back to Main View Screen</a>
 </body>
 </html>
 
 
 There was one error with center element, I have placed it in in CSS. There looks like no error now.
 The code you have doesnt pass the test and the one I pasted passed the test.
 
 
 Let me know if there is anything.

