This site will work and look better in a browser that supports web standards, but it is accessible to any browser or Internet device.
Add this CSS code to the top of a document to get a quick understanding of how an HTML page is structured. All TABLE tags will have a red border and a three pixel margin added to them. TD tags will have a dotted purple border and will have two pixels of padding.
<style type="text/css">
/* temporary styles */
table {border: 2px solid red; margin: 3px;}
td {border: 1px dotted purple; padding: 2px;}
</style>