pls use the validator.w3.org to check for errors on this code and write down the
ID: 3850376 • 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
Please find below error free code
For validate i used validator.w3.org/ and select validate direct from Input
-------------------------------------------------------------------------------------------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Main View Screen</title>
</head>
<body>
<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>
============================================================================
If you have any query, please feel free to ask.
Thanks a lot.
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.