Forum Moderators: open
I may be newbie to websites and such but I just discovered this html on a page of mine that I have absolutely no clue as to how it got there. Should I be suspicious? I don't even know it's purpose if there is any.
Any help? Thanks, Ken:)
[w3.org...]
If it bothers you, check out what the guys in the WYSIWYG [webmasterworld.com] forum have to say...
Nick
I hope this makes sense and look for filelist.xml as it will probably hold the answer.
[w3.org...]
it takes you over to W3C and pulls up the HTML 4.01 Specifications page.
W3C is the World Wide Web Consortium, the people who come up with the specs you should be following when you either hand code or WYSIWYG your web pages together (HTML 3.2, HTML 4.0, HTML 4.01, XML 1.0, etc.).
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40">
The above is the beginning html tag for your page. There should be some sort of DOCTYPE statement just before it. Normally it would be merely <html> but the additional material is in there to declare an XML namespace, identify how the document was produced and then finally give the URL for the HTML spec the document should follow.
For more information on XML Namespaces:
[w3.org...]
And possibly what Microsoft is attempting to do here:
[msdn.microsoft.com...]
Enjoy!