On Nov 18, 2:33 pm, tdp <[EMAIL PROTECTED]> wrote: > Thanks so much. Could you take another look at it? I think I have > done what you were saying, removed 1 of the body tags and moved > <script> right </body>, Still not working though. Thanks again for > your help.
It's still invalid HTML. Correct structure is <!DOCTYPE> <html> <head> ... <title>...</title> ... </head> <body> ... </body> </html> Nothing else can appear except where that structure has "..." -- in particular, you can't have anything between </head> and <body>, or between </body> and </html>. Try http://validator.w3.org/ Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
