Re: empty white screen instead of NBCOlympics site [Re: Olympic Web Sites]

> <p></p> tag should be inside <body></body>
> and they even do not open <body>!

body is an optional tag (although not an optional element).  The only
outright errors in the code you included are: 

- no DOCTYPE;
- no type attribute on script;
- missing quotes on src attribute of script.

<!DOCTYPE ....>
<title></title><p></p>

is, I believe, a valid HTML 4 strict document, syntactically.

HTML, HEAD and BODY elements can all be inferred from context.  This is
probably not safe with NS4, as it tends to act on tags, rather than
elements.  (I didn't have time to check the full DOCTYPE line.)

Received on Friday, 28 December 2001 17:00:18 UTC