Instead of declaring the body margins in the html, do it in the css with the following:
Code:
body { margin:0px; }
Once you add that to your css, you will be able to take out from your html:
Code:
leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0"
And there is a </p> on line 126. To put the error in context:
Code:
<p><div class="footer"> <a href="http://www.at-roys.com">Main</a> - <a href="http://www.at-roys.com/texindex.html">Main
(Text)</a> - <a href="http://www.at-roys.com/arsm.html">Site Map</a> - <a href="http://www.at-roys.com/arservices.html">Services</a>
- <a href="http://www.at-roys.com/arresources.htm">Resources</a> - <a href="http://www.at-roys.com/arquotereq.html">Quote</a>
- <a href="http://www.at-roys.com/contact.html">Contact</a> - <a href="http://www.at-roys.com/arabout.html">About</a>
- <a href="http://www.at-roys.com/arfaq-home.html">FAQ</a> - MT / MAT -<a href="http://www.at-roys.com/arwebprivacy.html">Privacy<BR>
</a> </div>
<BR>
<br>
<br>
<br>
</p>
Just move that </p> up to make sure it is inside of the div, like so:
Code:
<p><div class="footer"> <a href="http://www.at-roys.com">Main</a> - <a href="http://www.at-roys.com/texindex.html">Main
(Text)</a> - <a href="http://www.at-roys.com/arsm.html">Site Map</a> - <a href="http://www.at-roys.com/arservices.html">Services</a>
- <a href="http://www.at-roys.com/arresources.htm">Resources</a> - <a href="http://www.at-roys.com/arquotereq.html">Quote</a>
- <a href="http://www.at-roys.com/contact.html">Contact</a> - <a href="http://www.at-roys.com/arabout.html">About</a>
- <a href="http://www.at-roys.com/arfaq-home.html">FAQ</a> - MT / MAT -<a href="http://www.at-roys.com/arwebprivacy.html">Privacy<BR>
</a></p> </div>
<BR>
<br>
<br>
<br>
Hopefully this helps.
Bookmarks