FaceBook Website Integration ZMLNS Help

Asked By 10 points N/A Posted on -
qa-featured

Hey Friends,

I am working on Facebook integration on my website. I just needed help regarding the following question. What is the xmlns attribute added within the <html> tag of the HTML source.
 
Its where I need to reference the comments box. Do help if you have a solution or specialize in this field.
 
Thanks.
SHARE
Best Answer by Sarah-joe
Best Answer
Best Answer
Answered By 0 points N/A #98416

FaceBook Website Integration ZMLNS Help

qa-featured

Hi,

I think this is the idea you are searching for.
 
You have to know that xmlns attribute specifies the xml file specially the document namespacer.
 
This is invalid in HTML because xmlns attribute are only required in the XHTML
 
To valid HTML at the SITE doesn't complain if the xmlns attribute does not exist in the XHTML document because the default namespace "xmlns = "http://www.3.org/1999/xhtml" and it will be automatically added to the HTML tag even if you don't include it.
 
So you have to tape this :
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title of the document</title>
</head>
 
<body>
Your HTML source code
</body>
 
</html>
Answered By 0 points N/A #98417

FaceBook Website Integration ZMLNS Help

qa-featured

See this Solution that may help you.

CHECK THE FILE THAT IS ATTACHED

Hope this Solution helps you.

Related Questions