Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

pls use the validator.w3.org to check for errors on this code and write down the

ID: 3794725 • Letter: P

Question

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>

Explanation / Answer

<!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.