Example of Bad HTML Style

<HTML><HEAD><TITLE>
My Home
Page </TITLE>
</HEAD><BODY> This is an example of how to not w
rite HTML documents.</BODY></HTML>





Example of Good HTML Style

<HTML>

<HEAD>
<TITLE> My Home Page </TITLE>
</HEAD>

<BODY>
This is an example of the appropriate HTML style.
</BODY>

</HTML>




Which would you rather work with?