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: 3850374 • 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 PUBLIC "-//W3C//HTML 4.01 Transitional//EN" "http://www.w3.org/html4/loose.dtd">
<body>
<html>

<head>
<title>Main View Screen</title>
</head>

<h1 align="center">"Choose your show"</h1>


<p>
<a href="Star wars.html">
<img src="Thumbs/Star wars.jpg" alt="Star Wars">
</a>
<a href="Stargate.html">
<img src="Thumbs/Stargate.jpg" alt="Stargate: SG 1">
</a>
<a href="Warehouse.html">
<img src="Thumbs/Warehouse 13.jpg" alt="Warehouse 13">
</a>
</p>

<ul>
<li>Star Wars</li>
<li>Supernatural</li>
<li>Stargate: SG 1</li>
<li>Arrow</li>
<li>Flash</li>
<li>Warehouse 13</li>
<li>Sliders</li>
</ul>

</body>
</html>

Explanation / Answer

The correct code is given below :

<!DOCTYPE html PUBLIC "-//W3C//HTML 4.01 Transitional//EN" "http://www.w3.org/html4/loose.dtd">
<body>
<html>
<head>
<title>Main View Screen</title>
</head>
<h1 align="center">"Choose your show"</h1>

<p>
<a href="Star wars.html">
<img src="Thumbs/Star wars.jpg" alt="Star Wars">
</a>
<a href="Stargate.html">
<img src="Thumbs/Stargate.jpg" alt="Stargate: SG 1">
</a>
<a href="Warehouse.html">
<img src="Thumbs/Warehouse 13.jpg" alt="Warehouse 13">
</a>
</p>
<ul>
<li>Star Wars</li>
<li>Supernatural</li>
<li>Stargate: SG 1</li>
<li>Arrow</li>
<li>Flash</li>
<li>Warehouse 13</li>
<li>Sliders</li>
</ul>
</body>
</html>