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: 3850375 • 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 wars</title>
<script>a.blocktext {
text-align: center
}</script>
</head>

<h1>Star wars</h1>
<p>
<img src="Thumbs/Star wars.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

The correct code is given below :

<!DOCTYPE html>
<html>
<head>
<title>Star wars</title>
<script>a.blocktext {
text-align: center
}</script>
</head>
<h1>Star wars</h1>
<p>
<img src="Thumbs/Star wars.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>