httpvalidatorw3org Please use the web site above to validate
http://validator.w3.org/
Please use the web site above to validate the html codes below.
<!DOCTYPE html PUBLIC \"-//W3C//HTML 4.01 Transitional//EN\" \"http://www.w3.org/html4/loose.dtd\">
<html>
<head>
<title>Head First Lounge</title>
</head>
<body>
<h1>Welcome to the New and Improved Head First Lounge</h1>
<img src=\"drinks.gif\">
<p>
Join us any evening for refreshing
<a href=\"elixir.html\">elixirs</a>,
conversation and maybe a game or two of
<em>Dance Dance Revolution</em>.
Wireless access is always provided;
BYOWS (Bring Your Own Web Server).
</p>
<h2>Directions</h2>
<p>
You\'ll find us right in the center
of downtown Webville. If you need help finding
us, check out our
<a href=\"directions.html\">detailed directions</a>.
Come join us!
</p>
</body>
</html>
Solution
Hello please find below validated code.
only 2 erriors were there.
1st in <doctype>
2nd in <img> alt was not there.
=====Validated CODE====
<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
\"http://www.w3.org/TR/html4/loose.dtd\">
<html>
<head>
<meta http-equiv=\"Content-Type\" content=\"text/html charset=utf-8\">
<title>Head First Lounge</title>
</head>
<body>
<h1>Welcome to the New and Improved Head First Lounge</h1>
<img src=\"drinks.gif\" alt=\"\">
<p>
Join us any evening for refreshing
<a href=\"elixir.html\">elixirs</a>,
conversation and maybe a game or two of
<em>Dance Dance Revolution</em>.
Wireless access is always provided;
BYOWS (Bring Your Own Web Server).
</p>
<h2>Directions</h2>
<p>
You\'ll find us right in the center
of downtown Webville. If you need help finding
us, check out our
<a href=\"directions.html\">detailed directions</a>.
Come join us!
</p>
</body>
</html>
========
Let me know if you have any doubts.

