Looks like the problem is the style=”contact” tag. the style=”” tag is suppose to be calling some sort of style tag like setting the font type or background or padding like you would in css. If you’re trying to call the name of a style set in the css you need to use either class=”” for a style for a group of elements or id=”” for a style assigned for one element.
Proper use of the style=”” tag would be style=”font-size: 12pt;” or style=”border: 1px solid #000000;”
Using this tag improperly like this shouldn’t make the page look wrong in any browsers though.
Abraham