views:

22

answers:

1

edit: Thanks, missed the doctype.

+3  A: 

The style tag is only valid inside the head section of the page, and the linked stylesheet just above it should be in the head as well. You're lucky what you have works in anything.

If this is difficult to change, your best bet is probably removing your style block and using the style attribute on the div instead:

<div class="cltHeader" style="background-color: black;">
Tim Fountain